home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 March / PCWorld_2008-03_cd.bin / v cisle / mobiDVD / MobiDVD-1.0.0.6.exe / xulrunner / components / nsExtensionManager.js < prev    next >
Text File  |  2007-07-27  |  328KB  |  8,583 lines

  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is the Extension Manager.
  16.  *
  17.  * The Initial Developer of the Original Code is Ben Goodger.
  18.  * Portions created by the Initial Developer are Copyright (C) 2004
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *  Ben Goodger <ben@mozilla.org> (Google Inc.)
  23.  *  Benjamin Smedberg <benjamin@smedbergs.us>
  24.  *  Jens Bannmann <jens.b@web.de>
  25.  *  Robert Strong <robert.bugzilla@gmail.com>
  26.  *  Dave Townsend <dave.townsend@blueprintit.co.uk>
  27.  *  Daniel Veditz <dveditz@mozilla.com>
  28.  *
  29.  * Alternatively, the contents of this file may be used under the terms of
  30.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  31.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  32.  * in which case the provisions of the GPL or the LGPL are applicable instead
  33.  * of those above. If you wish to allow use of your version of this file only
  34.  * under the terms of either the GPL or the LGPL, and not to allow others to
  35.  * use your version of this file under the terms of the MPL, indicate your
  36.  * decision by deleting the provisions above and replace them with the notice
  37.  * and other provisions required by the GPL or the LGPL. If you do not delete
  38.  * the provisions above, a recipient may use your version of this file under
  39.  * the terms of any one of the MPL, the GPL or the LGPL.
  40.  *
  41.  * ***** END LICENSE BLOCK ***** */
  42.  
  43. //
  44. // TODO:
  45. // - better logging
  46. //
  47.  
  48. const nsIExtensionManager             = Components.interfaces.nsIExtensionManager;
  49. const nsIAddonUpdateCheckListener     = Components.interfaces.nsIAddonUpdateCheckListener;
  50. const nsIUpdateItem                   = Components.interfaces.nsIUpdateItem;
  51. const nsILocalFile                    = Components.interfaces.nsILocalFile;
  52. const nsILineInputStream              = Components.interfaces.nsILineInputStream;
  53. const nsIInstallLocation              = Components.interfaces.nsIInstallLocation;
  54. const nsIURL                          = Components.interfaces.nsIURL
  55. // XXXrstrong calling hasMoreElements on a nsIDirectoryEnumerator after
  56. // it has been removed will cause a crash on Mac OS X - bug 292823
  57. const nsIDirectoryEnumerator          = Components.interfaces.nsIDirectoryEnumerator;
  58.  
  59. const PREF_EM_CHECK_COMPATIBILITY     = "extensions.checkCompatibility";
  60. const PREF_EM_LAST_APP_VERSION        = "extensions.lastAppVersion";
  61. const PREF_UPDATE_COUNT               = "extensions.update.count";
  62. const PREF_UPDATE_DEFAULT_URL         = "extensions.update.url";
  63. const PREF_EM_IGNOREMTIMECHANGES      = "extensions.ignoreMTimeChanges";
  64. const PREF_EM_DISABLEDOBSOLETE        = "extensions.disabledObsolete";
  65. const PREF_EM_LAST_SELECTED_SKIN      = "extensions.lastSelectedSkin";
  66. const PREF_EM_EXTENSION_FORMAT        = "extensions.%UUID%.";
  67. const PREF_EM_ITEM_UPDATE_ENABLED     = "extensions.%UUID%.update.enabled";
  68. const PREF_EM_UPDATE_ENABLED          = "extensions.update.enabled";
  69. const PREF_EM_ITEM_UPDATE_URL         = "extensions.%UUID%.update.url";
  70. const PREF_EM_DSS_ENABLED             = "extensions.dss.enabled";
  71. const PREF_DSS_SWITCHPENDING          = "extensions.dss.switchPending";
  72. const PREF_DSS_SKIN_TO_SELECT         = "extensions.lastSelectedSkin";
  73. const PREF_GENERAL_SKINS_SELECTEDSKIN = "general.skins.selectedSkin";
  74. const PREF_EM_LOGGING_ENABLED         = "extensions.logging.enabled";
  75. const PREF_EM_UPDATE_INTERVAL         = "extensions.update.interval";
  76. const PREF_BLOCKLIST_URL              = "extensions.blocklist.url";
  77. const PREF_BLOCKLIST_DETAILS_URL      = "extensions.blocklist.detailsURL";
  78. const PREF_BLOCKLIST_ENABLED          = "extensions.blocklist.enabled";
  79. const PREF_BLOCKLIST_INTERVAL         = "extensions.blocklist.interval";
  80. const PREF_UPDATE_NOTIFYUSER          = "extensions.update.notifyUser";
  81. const PREF_MATCH_OS_LOCALE            = "intl.locale.matchOS";
  82. const PREF_SELECTED_LOCALE            = "general.useragent.locale";
  83.  
  84. const DIR_EXTENSIONS                  = "extensions";
  85. const DIR_CHROME                      = "chrome";
  86. const DIR_STAGE                       = "staged-xpis";
  87. const FILE_EXTENSIONS                 = "extensions.rdf";
  88. const FILE_EXTENSION_MANIFEST         = "extensions.ini";
  89. const FILE_EXTENSIONS_STARTUP_CACHE   = "extensions.cache";
  90. const FILE_AUTOREG                    = ".autoreg";
  91. const FILE_INSTALL_MANIFEST           = "install.rdf";
  92. const FILE_CONTENTS_MANIFEST          = "contents.rdf";
  93. const FILE_CHROME_MANIFEST            = "chrome.manifest";
  94. const FILE_BLOCKLIST                  = "blocklist.xml";
  95.  
  96. const UNKNOWN_XPCOM_ABI               = "unknownABI";
  97.  
  98. const FILE_LOGFILE                    = "extensionmanager.log";
  99.  
  100. const FILE_DEFAULT_THEME_JAR          = "classic.jar";
  101. const TOOLKIT_ID                      = "toolkit@mozilla.org"
  102.  
  103. const KEY_PROFILEDIR                  = "ProfD";
  104. const KEY_PROFILEDS                   = "ProfDS";
  105. const KEY_APPDIR                      = "XCurProcD";
  106. const KEY_TEMPDIR                     = "TmpD";
  107.  
  108. const EM_ACTION_REQUESTED_TOPIC       = "em-action-requested";
  109. const EM_ITEM_INSTALLED               = "item-installed";
  110. const EM_ITEM_UPGRADED                = "item-upgraded";
  111. const EM_ITEM_UNINSTALLED             = "item-uninstalled";
  112. const EM_ITEM_ENABLED                 = "item-enabled";
  113. const EM_ITEM_DISABLED                = "item-disabled";
  114. const EM_ITEM_CANCEL                  = "item-cancel-action";
  115.  
  116. const OP_NONE                         = "";
  117. const OP_NEEDS_INSTALL                = "needs-install";
  118. const OP_NEEDS_UPGRADE                = "needs-upgrade";
  119. const OP_NEEDS_UNINSTALL              = "needs-uninstall";
  120. const OP_NEEDS_ENABLE                 = "needs-enable";
  121. const OP_NEEDS_DISABLE                = "needs-disable";
  122.  
  123. const KEY_APP_PROFILE                 = "app-profile";
  124. const KEY_APP_GLOBAL                  = "app-global";
  125.  
  126. const CATEGORY_INSTALL_LOCATIONS      = "extension-install-locations";
  127.  
  128. const PREFIX_NS_EM                    = "http://www.mozilla.org/2004/em-rdf#";
  129. const PREFIX_NS_CHROME                = "http://www.mozilla.org/rdf/chrome#";
  130. const PREFIX_ITEM_URI                 = "urn:mozilla:item:";
  131. const PREFIX_EXTENSION                = "urn:mozilla:extension:";
  132. const PREFIX_THEME                    = "urn:mozilla:theme:";
  133. const RDFURI_INSTALL_MANIFEST_ROOT    = "urn:mozilla:install-manifest";
  134. const RDFURI_ITEM_ROOT                = "urn:mozilla:item:root"
  135. const RDFURI_DEFAULT_THEME            = "urn:mozilla:item:{972ce4c6-7e08-4474-a285-3208198ce6fd}";
  136. const XMLURI_PARSE_ERROR              = "http://www.mozilla.org/newlayout/xml/parsererror.xml"
  137. const XMLURI_BLOCKLIST                = "http://www.mozilla.org/2006/addons-blocklist";
  138.  
  139. const URI_GENERIC_ICON_XPINSTALL      = "chrome://mozapps/skin/xpinstall/xpinstallItemGeneric.png";
  140. const URI_GENERIC_ICON_THEME          = "chrome://mozapps/skin/extensions/themeGeneric.png";
  141. const URI_XPINSTALL_CONFIRM_DIALOG    = "chrome://mozapps/content/xpinstall/xpinstallConfirm.xul";
  142. const URI_FINALIZE_DIALOG             = "chrome://mozapps/content/extensions/finalize.xul";
  143. const URI_EXTENSIONS_PROPERTIES       = "chrome://mozapps/locale/extensions/extensions.properties";
  144. const URI_BRAND_PROPERTIES            = "chrome://branding/locale/brand.properties";
  145. const URI_DOWNLOADS_PROPERTIES        = "chrome://mozapps/locale/downloads/downloads.properties";
  146. const URI_EXTENSION_UPDATE_DIALOG     = "chrome://mozapps/content/extensions/update.xul";
  147. const URI_EXTENSION_LIST_DIALOG       = "chrome://mozapps/content/extensions/list.xul";
  148.  
  149. const INSTALLERROR_SUCCESS               = 0;
  150. const INSTALLERROR_INVALID_VERSION       = -1;
  151. const INSTALLERROR_INVALID_GUID          = -2;
  152. const INSTALLERROR_INCOMPATIBLE_VERSION  = -3;
  153. const INSTALLERROR_PHONED_HOME           = -4;
  154. const INSTALLERROR_INCOMPATIBLE_PLATFORM = -5;
  155. const INSTALLERROR_BLOCKLISTED           = -6;
  156.  
  157. const MODE_RDONLY   = 0x01;
  158. const MODE_WRONLY   = 0x02;
  159. const MODE_CREATE   = 0x08;
  160. const MODE_APPEND   = 0x10;
  161. const MODE_TRUNCATE = 0x20;
  162.  
  163. const PERMS_FILE      = 0644;
  164. const PERMS_DIRECTORY = 0755;
  165.  
  166. var gApp  = null;
  167. var gPref = null;
  168. var gRDF  = null;
  169. var gOS   = null;
  170. var gXPCOMABI             = null;
  171. var gOSTarget             = null;
  172. var gConsole              = null;
  173. var gInstallManifestRoot  = null;
  174. var gVersionChecker       = null;
  175. var gLoggingEnabled       = null;
  176. var gCheckCompatibility   = true;
  177. var gLocale               = "en-US";
  178.  
  179. /** 
  180.  * Valid GUIDs fit this pattern.
  181.  */
  182. var gIDTest = /^(\{[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\}|[a-z0-9-\._]*\@[a-z0-9-\._]+)$/i;
  183.  
  184. // shared code for suppressing bad cert dialogs
  185. //@line 40 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/shared/src/badCertHandler.js"
  186.  
  187. /**
  188.  * Only allow built-in certs for HTTPS connections.  See bug 340198.
  189.  */
  190. function checkCert(channel) {
  191.   if (!channel.originalURI.schemeIs("https"))  // bypass
  192.     return;
  193.  
  194.   const Ci = Components.interfaces;  
  195.   var cert =
  196.       channel.securityInfo.QueryInterface(Ci.nsISSLStatusProvider).
  197.       SSLStatus.QueryInterface(Ci.nsISSLStatus).serverCert;
  198.  
  199.   var issuer = cert.issuer;
  200.   while (issuer && !cert.equals(issuer)) {
  201.     cert = issuer;
  202.     issuer = cert.issuer;
  203.   }
  204.  
  205.   if (!issuer || issuer.tokenName != "Builtin Object Token")
  206.     throw "cert issuer is not built-in";
  207. }
  208.  
  209. /**
  210.  * This class implements nsIBadCertListener.  It's job is to prevent "bad cert"
  211.  * security dialogs from being shown to the user.  It is better to simply fail
  212.  * if the certificate is bad. See bug 304286.
  213.  */
  214. function BadCertHandler() {
  215. }
  216. BadCertHandler.prototype = {
  217.  
  218.   // nsIBadCertListener
  219.   confirmUnknownIssuer: function(socketInfo, cert, certAddType) {
  220.     LOG("EM BadCertHandler: Unknown issuer");
  221.     return false;
  222.   },
  223.  
  224.   confirmMismatchDomain: function(socketInfo, targetURL, cert) {
  225.     LOG("EM BadCertHandler: Mismatched domain");
  226.     return false;
  227.   },
  228.  
  229.   confirmCertExpired: function(socketInfo, cert) {
  230.     LOG("EM BadCertHandler: Expired certificate");
  231.     return false;
  232.   },
  233.  
  234.   notifyCrlNextupdate: function(socketInfo, targetURL, cert) {
  235.   },
  236.  
  237.   // nsIChannelEventSink
  238.   onChannelRedirect: function(oldChannel, newChannel, flags) {
  239.     // make sure the certificate of the old channel checks out before we follow
  240.     // a redirect from it.  See bug 340198.
  241.     checkCert(oldChannel);
  242.   },
  243.  
  244.   // nsIInterfaceRequestor
  245.   getInterface: function(iid) {
  246.     return this.QueryInterface(iid);
  247.   },
  248.  
  249.   // nsISupports
  250.   QueryInterface: function(iid) {
  251.     if (!iid.equals(Components.interfaces.nsIBadCertListener) &&
  252.         !iid.equals(Components.interfaces.nsIChannelEventSink) &&
  253.         !iid.equals(Components.interfaces.nsIInterfaceRequestor) &&
  254.         !iid.equals(Components.interfaces.nsISupports))
  255.       throw Components.results.NS_ERROR_NO_INTERFACE;
  256.     return this;
  257.   }
  258. };
  259. //@line 186 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/extensions/src/nsExtensionManager.js.in"
  260.  
  261. /**
  262.  * Creates a Version Checker object.
  263.  * @returns A handle to the global Version Checker service.
  264.  */
  265. function getVersionChecker() {
  266.   if (!gVersionChecker) {
  267.     gVersionChecker = Components.classes["@mozilla.org/xpcom/version-comparator;1"]
  268.                                 .getService(Components.interfaces.nsIVersionComparator);
  269.   }
  270.   return gVersionChecker;
  271. }
  272.  
  273. var BundleManager = { 
  274.   /**
  275.   * Creates and returns a String Bundle at the specified URI
  276.   * @param   bundleURI
  277.   *          The URI of the bundle to load
  278.   * @returns A nsIStringBundle which was retrieved.
  279.   */
  280.   getBundle: function(bundleURI) {
  281.     var sbs = Components.classes["@mozilla.org/intl/stringbundle;1"]
  282.                         .getService(Components.interfaces.nsIStringBundleService);
  283.     return sbs.createBundle(bundleURI);
  284.   },
  285.   
  286.   _appName: "",
  287.   
  288.   /**
  289.    * The Application's display name.
  290.    */
  291.   get appName() {
  292.     if (!this._appName) {
  293.       var brandBundle = this.getBundle(URI_BRAND_PROPERTIES)
  294.       this._appName = brandBundle.GetStringFromName("brandShortName");
  295.     }
  296.     return this._appName;
  297.   }
  298. };
  299.  
  300. ///////////////////////////////////////////////////////////////////////////////
  301. //
  302. // Utility Functions
  303. //
  304. function EM_NS(property) {
  305.   return PREFIX_NS_EM + property;
  306. }
  307.  
  308. function CHROME_NS(property) {
  309.   return PREFIX_NS_CHROME + property;
  310. }
  311.  
  312. function EM_R(property) {
  313.   return gRDF.GetResource(EM_NS(property));
  314. }
  315.  
  316. function EM_L(literal) {
  317.   return gRDF.GetLiteral(literal);
  318. }
  319.  
  320. function EM_I(integer) {
  321.   return gRDF.GetIntLiteral(integer);
  322. }
  323.  
  324. function EM_D(integer) {
  325.   return gRDF.GetDateLiteral(integer);
  326. }
  327.  
  328. /**
  329.  * Gets a preference value, handling the case where there is no default.
  330.  * @param   func
  331.  *          The name of the preference function to call, on nsIPrefBranch
  332.  * @param   preference
  333.  *          The name of the preference
  334.  * @param   defaultValue
  335.  *          The default value to return in the event the preference has 
  336.  *          no setting
  337.  * @returns The value of the preference, or undefined if there was no
  338.  *          user or default value.
  339.  */
  340. function getPref(func, preference, defaultValue) {
  341.   try {
  342.     return gPref[func](preference);
  343.   }
  344.   catch (e) {
  345.   }
  346.   return defaultValue;
  347. }
  348.  
  349. /**
  350.  * Initializes a RDF Container at a URI in a datasource.
  351.  * @param   datasource
  352.  *          The datasource the container is in
  353.  * @param   root
  354.  *          The RDF Resource which is the root of the container.
  355.  * @returns The nsIRDFContainer, initialized at the root.
  356.  */
  357. function getContainer(datasource, root) {
  358.   var ctr = Components.classes["@mozilla.org/rdf/container;1"]
  359.                       .createInstance(Components.interfaces.nsIRDFContainer);
  360.   ctr.Init(datasource, root);
  361.   return ctr;
  362. }
  363.  
  364. /**
  365.  * Gets a RDF Resource for item with the given ID
  366.  * @param   id
  367.  *          The GUID of the item to construct a RDF resource to the 
  368.  *          active item for
  369.  * @returns The RDF Resource to the Active item. 
  370.  */
  371. function getResourceForID(id) {
  372.   return gRDF.GetResource(PREFIX_ITEM_URI + id);
  373. }
  374.  
  375. /**
  376.  * Construct a nsIUpdateItem with the supplied metadata
  377.  * ...
  378.  */
  379. function makeItem(id, version, locationKey, minVersion, maxVersion, name, 
  380.                   updateURL, updateHash, iconURL, updateRDF, type) {
  381.   var item = Components.classes["@mozilla.org/updates/item;1"]
  382.                        .createInstance(Components.interfaces.nsIUpdateItem);
  383.   item.init(id, version, locationKey, minVersion, maxVersion, name,
  384.             updateURL, updateHash, iconURL, updateRDF, type);
  385.   return item;
  386. }
  387.  
  388. /**
  389.  * Gets the specified directory at the specified hierarchy under a 
  390.  * Directory Service key. 
  391.  * @param   key
  392.  *          The Directory Service Key to start from
  393.  * @param   pathArray
  394.  *          An array of path components to locate beneath the directory 
  395.  *          specified by |key|
  396.  * @return  nsIFile object for the location specified. If the directory
  397.  *          requested does not exist, it is created, along with any
  398.  *          parent directories that need to be created.
  399.  */
  400. function getDir(key, pathArray) {
  401.   return getDirInternal(key, pathArray, true);
  402. }
  403.  
  404. /**
  405.  * Gets the specified directory at the specified hierarchy under a 
  406.  * Directory Service key. 
  407.  * @param   key
  408.  *          The Directory Service Key to start from
  409.  * @param   pathArray
  410.  *          An array of path components to locate beneath the directory 
  411.  *          specified by |key|
  412.  * @return  nsIFile object for the location specified. If the directory
  413.  *          requested does not exist, it is NOT created.
  414.  */
  415. function getDirNoCreate(key, pathArray) {
  416.   return getDirInternal(key, pathArray, false);
  417. }
  418.  
  419. /**
  420.  * Gets the specified directory at the specified hierarchy under a 
  421.  * Directory Service key. 
  422.  * @param   key
  423.  *          The Directory Service Key to start from
  424.  * @param   pathArray
  425.  *          An array of path components to locate beneath the directory 
  426.  *          specified by |key|
  427.  * @param   shouldCreate
  428.  *          true if the directory hierarchy specified in |pathArray|
  429.  *          should be created if it does not exist,
  430.  *          false otherwise.
  431.  * @return  nsIFile object for the location specified. 
  432.  */
  433. function getDirInternal(key, pathArray, shouldCreate) {
  434.   var fileLocator = Components.classes["@mozilla.org/file/directory_service;1"]
  435.                               .getService(Components.interfaces.nsIProperties);
  436.   var dir = fileLocator.get(key, nsILocalFile);
  437.   for (var i = 0; i < pathArray.length; ++i) {
  438.     dir.append(pathArray[i]);
  439.     if (shouldCreate && !dir.exists())
  440.       dir.create(nsILocalFile.DIRECTORY_TYPE, PERMS_DIRECTORY);
  441.   }
  442.   dir.followLinks = false;
  443.   return dir;
  444. }
  445.  
  446. /**
  447.  * Gets the file at the specified hierarchy under a Directory Service key.
  448.  * @param   key
  449.  *          The Directory Service Key to start from
  450.  * @param   pathArray
  451.  *          An array of path components to locate beneath the directory 
  452.  *          specified by |key|. The last item in this array must be the
  453.  *          leaf name of a file.
  454.  * @return  nsIFile object for the file specified. The file is NOT created
  455.  *          if it does not exist, however all required directories along 
  456.  *          the way are.
  457.  */
  458. function getFile(key, pathArray) {
  459.   var file = getDir(key, pathArray.slice(0, -1));
  460.   file.append(pathArray[pathArray.length - 1]);
  461.   return file;
  462. }
  463.  
  464. /**
  465.  * Gets the descriptor of a directory as a relative path to common base
  466.  * directories (profile, user home, app install dir, etc).
  467.  *
  468.  * @param   itemLocation
  469.  *          The nsILocalFile representing the item's directory.
  470.  * @param   installLocation the nsIInstallLocation for this item
  471.  */
  472. function getDescriptorFromFile(itemLocation, installLocation) {
  473.   var baseDir = installLocation.location;
  474.  
  475.   if (baseDir && baseDir.contains(itemLocation, true)) {
  476.     return "rel%" + itemLocation.getRelativeDescriptor(baseDir);
  477.   }
  478.  
  479.   return "abs%" + itemLocation.persistentDescriptor;
  480. }
  481.  
  482. function getAbsoluteDescriptor(itemLocation) {
  483.   return itemLocation.persistentDescriptor;
  484. }
  485.  
  486. /**
  487.  * Initializes a Local File object based on a descriptor
  488.  * provided by "getDescriptorFromFile".
  489.  *
  490.  * @param   descriptor
  491.  *          The descriptor that locates the directory
  492.  * @param   installLocation
  493.  *          The nsIInstallLocation object for this item.
  494.  * @returns The nsILocalFile object representing the location of the item
  495.  */
  496. function getFileFromDescriptor(descriptor, installLocation) {
  497.   var location = Components.classes["@mozilla.org/file/local;1"]
  498.                            .createInstance(nsILocalFile);
  499.  
  500.   var m = descriptor.match(/^(abs|rel)\%(.*)$/);
  501.   if (!m)
  502.     throw Components.results.NS_ERROR_INVALID_ARG;
  503.  
  504.   if (m[1] == "rel") {
  505.     location.setRelativeDescriptor(installLocation.location, m[2]);
  506.   }
  507.   else {
  508.     location.persistentDescriptor = m[2];
  509.   }
  510.  
  511.   return location;
  512. }
  513.  
  514. /**
  515.  * Determines if a file is an item package - either a XPI or a JAR file.
  516.  * @param   file
  517.  *          The file to check
  518.  * @returns true if the file is an item package, false otherwise.
  519.  */
  520. function fileIsItemPackage(file) {
  521.   var fileURL = getURIFromFile(file);
  522.   if (fileURL instanceof nsIURL)
  523.     var extension = fileURL.fileExtension.toLowerCase();
  524.   return extension == "xpi" || extension == "jar";
  525. }
  526.  
  527. /**
  528.  * Opens a safe file output stream for writing. 
  529.  * @param   file
  530.  *          The file to write to.
  531.  * @param   modeFlags
  532.  *          (optional) File open flags. Can be undefined. 
  533.  * @returns nsIFileOutputStream to write to.
  534.  */
  535. function openSafeFileOutputStream(file, modeFlags) {
  536.   var fos = Components.classes["@mozilla.org/network/safe-file-output-stream;1"]
  537.                       .createInstance(Components.interfaces.nsIFileOutputStream);
  538.   if (modeFlags === undefined)
  539.     modeFlags = MODE_WRONLY | MODE_CREATE | MODE_TRUNCATE;
  540.   if (!file.exists()) 
  541.     file.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  542.   fos.init(file, modeFlags, PERMS_FILE, 0);
  543.   return fos;
  544. }
  545.  
  546. /**
  547.  * Closes a safe file output stream.
  548.  * @param   stream
  549.  *          The stream to close.
  550.  */
  551. function closeSafeFileOutputStream(stream) {
  552.   if (stream instanceof Components.interfaces.nsISafeOutputStream)
  553.     stream.finish();
  554.   else
  555.     stream.close();
  556. }
  557.  
  558. /**
  559.  * Deletes a directory and its children. First it tries nsIFile::Remove(true).
  560.  * If that fails it will fall back to recursing, setting the appropriate
  561.  * permissions, and deleting the current entry. This is needed for when we have
  562.  * rights to delete a directory but there are entries that have a read-only
  563.  * attribute (e.g. a copy restore from a read-only CD, etc.)
  564.  * @param   dir
  565.  *          A nsIFile for the directory to be deleted
  566.  */
  567. function removeDirRecursive(dir) {
  568.   try {
  569.     dir.remove(true);
  570.     return;
  571.   }
  572.   catch (e) {
  573.   }
  574.  
  575.   var dirEntries = dir.directoryEntries;
  576.   while (dirEntries.hasMoreElements()) {
  577.     var entry = dirEntries.getNext().QueryInterface(Components.interfaces.nsIFile);
  578.  
  579.     if (entry.isDirectory()) {
  580.       removeDirRecursive(entry);
  581.     }
  582.     else {
  583.       entry.permissions = PERMS_FILE;
  584.       entry.remove(false);
  585.     }
  586.   }
  587.   dir.permissions = PERMS_DIRECTORY;
  588.   dir.remove(true);
  589. }
  590.  
  591. /**
  592.  * Logs a string to the error console. 
  593.  * @param   string
  594.  *          The string to write to the error console..
  595.  */  
  596. function LOG(string) {
  597.   if (gLoggingEnabled) {
  598.     dump("*** " + string + "\n");
  599.     gConsole.logStringMessage(string);
  600.   }
  601. }
  602.  
  603. /** 
  604.  * Randomize the specified file name. Used to force RDF to bypass the cache
  605.  * when loading certain types of files.
  606.  * @param   fileName 
  607.  *          A file name to randomize, e.g. install.rdf
  608.  * @returns A randomized file name, e.g. install-xyz.rdf
  609.  */
  610. function getRandomFileName(fileName) {
  611.   var extensionDelimiter = fileName.lastIndexOf(".");
  612.   var prefix = fileName.substr(0, extensionDelimiter);
  613.   var suffix = fileName.substr(extensionDelimiter);
  614.   
  615.   var characters = "abcdefghijklmnopqrstuvwxyz0123456789";
  616.   var nameString = prefix + "-";
  617.   for (var i = 0; i < 3; ++i) {
  618.     var index = Math.round((Math.random()) * characters.length);
  619.     nameString += characters.charAt(index);
  620.   }
  621.   return nameString + "." + suffix;
  622. }
  623.  
  624. /**
  625.  * Get the RDF URI prefix of a nsIUpdateItem type. This function should be used
  626.  * ONLY to support Firefox 1.0 Update RDF files! Item URIs in the datasource 
  627.  * are NOT prefixed.
  628.  * @param   type
  629.  *          The nsIUpdateItem type to find a RDF URI prefix for
  630.  * @returns The RDF URI prefix.
  631.  */
  632. function getItemPrefix(type) {
  633.   if (type & nsIUpdateItem.TYPE_EXTENSION) 
  634.     return PREFIX_EXTENSION;
  635.   else if (type & nsIUpdateItem.TYPE_THEME)
  636.     return PREFIX_THEME;
  637.   return PREFIX_ITEM_URI;
  638. }
  639.  
  640. /**
  641.  * Trims a prefix from a string.
  642.  * @param   string
  643.  *          The source string
  644.  * @param   prefix
  645.  *          The prefix to remove.
  646.  * @returns The suffix (string - prefix)
  647.  */
  648. function stripPrefix(string, prefix) {
  649.   return string.substr(prefix.length);
  650. }
  651.  
  652. /**
  653.  * Gets a File URL spec for a nsIFile
  654.  * @param   file
  655.  *          The file to get a file URL spec to
  656.  * @returns The file URL spec to the file
  657.  */
  658. function getURLSpecFromFile(file) {
  659.   var ioServ = Components.classes["@mozilla.org/network/io-service;1"]
  660.                          .getService(Components.interfaces.nsIIOService);
  661.   var fph = ioServ.getProtocolHandler("file")
  662.                   .QueryInterface(Components.interfaces.nsIFileProtocolHandler);
  663.   return fph.getURLSpecFromFile(file);
  664. }
  665.  
  666. /**
  667.  * Constructs a URI to a spec.
  668.  * @param   spec
  669.  *          The spec to construct a URI to
  670.  * @returns The nsIURI constructed.
  671.  */
  672. function newURI(spec) {
  673.   var ioServ = Components.classes["@mozilla.org/network/io-service;1"]
  674.                          .getService(Components.interfaces.nsIIOService);
  675.   return ioServ.newURI(spec, null, null);
  676. }
  677.  
  678. /** 
  679.  * Constructs a File URI to a nsIFile
  680.  * @param   file
  681.  *          The file to construct a File URI to
  682.  * @returns The file URI to the file
  683.  */
  684. function getURIFromFile(file) {
  685.   var ioServ = Components.classes["@mozilla.org/network/io-service;1"]
  686.                          .getService(Components.interfaces.nsIIOService);
  687.   return ioServ.newFileURI(file);
  688. }
  689.  
  690. /**
  691.  * @returns Whether or not we are currently running in safe mode.
  692.  */
  693. function inSafeMode() {
  694.   return gApp.inSafeMode;
  695. }
  696.  
  697. /**
  698.  * Extract the string value from a RDF Literal or Resource
  699.  * @param   literalOrResource
  700.  *          RDF String Literal or Resource
  701.  * @returns String value of the literal or resource, or undefined if the object
  702.  *          supplied is not a RDF string literal or resource.
  703.  */
  704. function stringData(literalOrResource) {
  705.   if (literalOrResource instanceof Components.interfaces.nsIRDFLiteral)
  706.     return literalOrResource.Value;
  707.   if (literalOrResource instanceof Components.interfaces.nsIRDFResource)
  708.     return literalOrResource.Value;
  709.   return undefined;
  710. }
  711.  
  712. /**
  713.  * Extract the integer value of a RDF Literal
  714.  * @param   literal
  715.  *          nsIRDFInt literal
  716.  * @return  integer value of the literal
  717.  */
  718. function intData(literal) {
  719.   if (literal instanceof Components.interfaces.nsIRDFInt)
  720.     return literal.Value;
  721.   return undefined;
  722. }
  723.  
  724. /**
  725.  * Gets a property from an install manifest.
  726.  * @param   installManifest
  727.  *          An Install Manifest datasource to read from
  728.  * @param   property
  729.  *          The name of a proprety to read (sans EM_NS)
  730.  * @returns The literal value of the property, or undefined if the property has
  731.  *          no value.
  732.  */
  733. function getManifestProperty(installManifest, property) {
  734.   var target = installManifest.GetTarget(gInstallManifestRoot, 
  735.                                          gRDF.GetResource(EM_NS(property)), true);
  736.   var val = stringData(target);
  737.   return val === undefined ? intData(target) : val;
  738. }
  739.  
  740. /**
  741.  * Given an Install Manifest Datasource, retrieves the type of item the manifest
  742.  * describes.
  743.  * @param   installManifest 
  744.  *          The Install Manifest Datasource.
  745.  * @return  The nsIUpdateItem type of the item described by the manifest
  746.  *          returns TYPE_EXTENSION if attempts to determine the type fail.
  747.  */
  748. function getAddonTypeFromInstallManifest(installManifest) {
  749.   var target = installManifest.GetTarget(gInstallManifestRoot, 
  750.                                          gRDF.GetResource(EM_NS("type")), true);
  751.   if (target) {
  752.     var type = stringData(target);
  753.     return type === undefined ? intData(target) : parseInt(type);
  754.   }
  755.  
  756.   // Firefox 1.0 and earlier did not support addon-type annotation on the 
  757.   // Install Manifest, so we fall back to a theme-only property to 
  758.   // differentiate.
  759.   if (getManifestProperty(installManifest, "internalName") !== undefined)
  760.     return nsIUpdateItem.TYPE_THEME;
  761.  
  762.   // If no type is provided, default to "Extension"
  763.   return nsIUpdateItem.TYPE_EXTENSION;    
  764. }
  765.  
  766. /**
  767.  * Shows a message about an incompatible Extension/Theme. 
  768.  * @param   installData
  769.  *          An Install Data object from |getInstallData|
  770.  */
  771. function showIncompatibleError(installData) {
  772.   var extensionStrings = BundleManager.getBundle(URI_EXTENSIONS_PROPERTIES);
  773.   var params = [extensionStrings.GetStringFromName("type-" + installData.type)];
  774.   var title = extensionStrings.formatStringFromName("incompatibleTitle", 
  775.                                                     params, params.length);
  776.   var message;
  777.   var targetAppData = installData.currentApp;
  778.   if (!targetAppData) {
  779.     params = [installData.name, installData.version, BundleManager.appName];
  780.     message = extensionStrings.formatStringFromName("incompatibleMessageNoApp", 
  781.                                                     params, params.length);
  782.   }
  783.   else if (targetAppData.minVersion == targetAppData.maxVersion) {
  784.     // If the min target app version and the max target app version are the same, don't show
  785.     // a message like, "Foo is only compatible with Firefox versions 0.7 to 0.7", rather just
  786.     // show, "Foo is only compatible with Firefox 0.7"
  787.     params = [installData.name, installData.version, BundleManager.appName, gApp.version, 
  788.               installData.name, installData.version, BundleManager.appName, 
  789.               targetAppData.minVersion];
  790.     message = extensionStrings.formatStringFromName("incompatibleMsgSingleAppVersion", 
  791.                                                     params, params.length);
  792.   }
  793.   else {
  794.     params = [installData.name, installData.version, BundleManager.appName, gApp.version, 
  795.               installData.name, installData.version, BundleManager.appName, 
  796.               targetAppData.minVersion, targetAppData.maxVersion];
  797.     message = extensionStrings.formatStringFromName("incompatibleMsg", params, params.length);
  798.   }
  799.   var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
  800.                      .getService(Components.interfaces.nsIPromptService);
  801.   ps.alert(null, title, message);
  802. }
  803.  
  804. /**
  805.  * Shows a message.
  806.  * @param   titleKey
  807.  *          String key of the title string in the Extensions localization file.
  808.  * @param   messageKey
  809.  *          String key of the message string in the Extensions localization file.
  810.  * @param   messageParams
  811.  *          Array of strings to be substituted into |messageKey|. Can be null.
  812.  */
  813. function showMessage(titleKey, titleParams, messageKey, messageParams) {
  814.   var extensionStrings = BundleManager.getBundle(URI_EXTENSIONS_PROPERTIES);
  815.   if (titleParams && titleParams.length > 0) {
  816.     var title = extensionStrings.formatStringFromName(titleKey, titleParams,
  817.                                                       titleParams.length);
  818.   }
  819.   else
  820.     title = extensionStrings.GetStringFromName(titleKey);
  821.  
  822.   if (messageParams && messageParams.length > 0) {
  823.     var message = extensionStrings.formatStringFromName(messageKey, messageParams,
  824.                                                         messageParams.length);
  825.   }
  826.   else
  827.     message = extensionStrings.GetStringFromName(messageKey);
  828.   var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
  829.                      .getService(Components.interfaces.nsIPromptService);
  830.   ps.alert(null, title, message);
  831. }
  832.  
  833. /**
  834.  * Shows a dialog for blocklisted items.
  835.  * @param   items
  836.  *          An array of nsIUpdateItems.
  837.  * @param   fromInstall
  838.  *          Whether this is called from an install or from the blocklist
  839.  *          background check.
  840.  */
  841. function showBlocklistMessage(items, fromInstall) {
  842.   var win = null;
  843.   var params = Components.classes["@mozilla.org/embedcomp/dialogparam;1"]
  844.                          .createInstance(Components.interfaces.nsIDialogParamBlock);
  845.   params.SetInt(0, (fromInstall ? 1 : 0));
  846.   params.SetInt(1, items.length);
  847.   params.SetNumberStrings(items.length * 2);
  848.   for (var i = 0; i < items.length; ++i) 
  849.     params.SetString(i, items[i].name + " " + items[i].version);
  850.  
  851.   // if this was initiated from an install try to find the appropriate manager
  852.   if (fromInstall) {
  853.     var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
  854.                        .getService(Components.interfaces.nsIWindowMediator);
  855.     win = wm.getMostRecentWindow(nsIUpdateItem.TYPE_THEME ? "Extension:Manager-themes" :
  856.                                                             "Extension:Manager-extensions");
  857.   }
  858.   var ww = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
  859.                      .getService(Components.interfaces.nsIWindowWatcher);
  860.   ww.openWindow(win, URI_EXTENSION_LIST_DIALOG, "",
  861.                 "chrome,centerscreen,modal,dialog,titlebar", params);
  862. }
  863.  
  864. /** 
  865.  * Gets a zip reader for the file specified.
  866.  * @param   zipFile
  867.  *          A ZIP archive to open with a nsIZipReader.
  868.  * @return  A nsIZipReader for the file specified.
  869.  */
  870. function getZipReaderForFile(zipFile) {
  871.   try {
  872.     var zipReader = Components.classes["@mozilla.org/libjar/zip-reader;1"]
  873.                               .createInstance(Components.interfaces.nsIZipReader);
  874.     zipReader.open(zipFile);
  875.   }
  876.   catch (e) {
  877.     zipReader.close();
  878.     throw e;
  879.   }
  880.   return zipReader;
  881. }
  882.  
  883. /** 
  884.  * Extract a RDF file from a ZIP archive to a random location in the system
  885.  * temp directory.
  886.  * @param   zipFile
  887.  *          A ZIP archive to read from
  888.  * @param   fileName 
  889.  *          The name of the file to read from the zip. 
  890.  * @param   suppressErrors
  891.  *          Whether or not to report errors. 
  892.  * @return  The file created in the temp directory.
  893.  */
  894. function extractRDFFileToTempDir(zipFile, fileName, suppressErrors) {
  895.   var file = getFile(KEY_TEMPDIR, [getRandomFileName(fileName)]);
  896.   try {
  897.     var zipReader = getZipReaderForFile(zipFile);
  898.     zipReader.extract(fileName, file);
  899.     zipReader.close();
  900.   }
  901.   catch (e) {
  902.     if (!suppressErrors) {
  903.       showMessage("missingFileTitle", [], "missingFileMessage", 
  904.                   [BundleManager.appName, fileName]);
  905.       throw e;
  906.     }
  907.   }
  908.   return file;
  909. }
  910.  
  911. /**
  912.  * Show a message to the user informing them they are installing an old non-EM
  913.  * style Theme, and that these are not supported.
  914.  * @param   installManifest 
  915.  *          The Old-Style Contents Manifest datasource representing the theme. 
  916.  */
  917. function showOldThemeError(contentsManifest) {
  918.   var extensionStrings = BundleManager.getBundle(URI_EXTENSIONS_PROPERTIES);
  919.   var params = [extensionStrings.GetStringFromName("theme")];
  920.   var title = extensionStrings.formatStringFromName("incompatibleTitle", 
  921.                                                     params, params.length);
  922.   var appVersion = extensionStrings.GetStringFromName("incompatibleOlder");
  923.   
  924.   try {  
  925.     var ctr = getContainer(contentsManifest, 
  926.                            gRDF.GetResource("urn:mozilla:skin:root"));
  927.     var elts = ctr.GetElements();
  928.     var nameArc = gRDF.GetResource(CHROME_NS("displayName"));
  929.     while (elts.hasMoreElements()) {
  930.       var elt = elts.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  931.       themeName = stringData(contentsManifest.GetTarget(elt, nameArc, true));
  932.       if (themeName) 
  933.         break;
  934.     }
  935.   }
  936.   catch (e) {
  937.     themeName = extensionStrings.GetStringFromName("incompatibleThemeName");
  938.   }
  939.   
  940.   params = [themeName, "", BundleManager.appName, gApp.version, themeName, "", 
  941.             BundleManager.appName, appVersion];
  942.   var message = extensionStrings.formatStringFromName("incompatibleMsgSingleAppVersion",
  943.                                                       params, params.length);
  944.   var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
  945.                      .getService(Components.interfaces.nsIPromptService);
  946.   ps.alert(null, title, message);
  947. }
  948.  
  949. /**
  950.  * Gets an Install Manifest datasource from a file.
  951.  * @param   file
  952.  *          The nsIFile that contains the Install Manifest RDF
  953.  * @returns The Install Manifest datasource
  954.  */
  955. function getInstallManifest(file) {
  956.   var fileURL = getURLSpecFromFile(file);
  957.   var ds = gRDF.GetDataSourceBlocking(fileURL);
  958.   var arcs = ds.ArcLabelsOut(gInstallManifestRoot);
  959.   if (!arcs.hasMoreElements()) {
  960.     ds = null;
  961.     var uri = Components.classes["@mozilla.org/network/io-service;1"]
  962.                         .getService(Components.interfaces.nsIIOService)
  963.                         .newFileURI(file);
  964.     var url = uri.QueryInterface(nsIURL);
  965.     showMessage("malformedTitle", [], "malformedMessage", 
  966.                 [BundleManager.appName, url.fileName]);
  967.   }
  968.   return ds;
  969. }
  970.  
  971. /**
  972.  * An enumeration of items in a JS array.
  973.  * @constructor
  974.  */
  975. function ArrayEnumerator(aItems) {
  976.   this._index = 0;
  977.   if (aItems) {
  978.     for (var i = 0; i < aItems.length; ++i) {
  979.       if (!aItems[i])
  980.         aItems.splice(i, 1);      
  981.     }
  982.   }
  983.   this._contents = aItems;
  984. }
  985.  
  986. ArrayEnumerator.prototype = {
  987.   _index: 0,
  988.   _contents: [],
  989.   
  990.   hasMoreElements: function() {
  991.     return this._index < this._contents.length;
  992.   },
  993.   
  994.   getNext: function() {
  995.     return this._contents[this._index++];      
  996.   }
  997. };
  998.  
  999. /**
  1000.  * An enumeration of files in a JS array.
  1001.  * @param   files
  1002.  *          The files to enumerate
  1003.  * @constructor
  1004.  */
  1005. function FileEnumerator(files) {
  1006.   this._index = 0;
  1007.   if (files) {
  1008.     for (var i = 0; i < files.length; ++i) {
  1009.       if (!files[i])
  1010.         files.splice(i, 1);      
  1011.     }
  1012.   }
  1013.   this._contents = files;
  1014. }
  1015.  
  1016. FileEnumerator.prototype = {
  1017.   _index: 0,
  1018.   _contents: [],
  1019.  
  1020.   /**
  1021.    * Gets the next file in the sequence.
  1022.    */  
  1023.   get nextFile() {
  1024.     if (this._index < this._contents.length)
  1025.       return this._contents[this._index++];
  1026.     return null;
  1027.   },
  1028.   
  1029.   /**
  1030.    * Stop enumerating. Nothing to do here.
  1031.    */
  1032.   close: function() {
  1033.   },
  1034. };
  1035.  
  1036. /**
  1037.  * An object which identifies an Install Location for items, where the location
  1038.  * relationship is each item living in a directory named with its GUID under 
  1039.  * the directory used when constructing this object.
  1040.  *
  1041.  * e.g. <location>\{GUID1}
  1042.  *      <location>\{GUID2}
  1043.  *      <location>\{GUID3}
  1044.  *      ...
  1045.  *
  1046.  * @param   name
  1047.  *          The string identifier of this Install Location.
  1048.  * @param   location
  1049.  *          The directory that contains the items. 
  1050.  * @constructor
  1051.  */
  1052. function DirectoryInstallLocation(name, location, restricted, priority) {
  1053.   this._name = name;
  1054.   if (location.exists()) {
  1055.     if (!location.isDirectory())
  1056.       throw new Error("location must be a directoy!");
  1057.   }
  1058.   else {
  1059.     try {
  1060.       location.create(nsILocalFile.DIRECTORY_TYPE, 0775);
  1061.     }
  1062.     catch (e) {
  1063.       LOG("DirectoryInstallLocation: failed to create location " + 
  1064.           " directory = " + location.path + ", exception = " + e + "\n");
  1065.     }
  1066.   }
  1067.  
  1068.   this._location = location;
  1069.   this._locationToIDMap = {};
  1070.   this._restricted = restricted;
  1071.   this._priority = priority;
  1072. }
  1073. DirectoryInstallLocation.prototype = {
  1074.   _name           : "",
  1075.   _location       : null,
  1076.   _locationToIDMap: null,
  1077.   _restricted     : false,
  1078.   _priority       : 0,
  1079.   _canAccess      : null,
  1080.   
  1081.   /**
  1082.    * See nsIExtensionManager.idl
  1083.    */
  1084.   get name() {
  1085.     return this._name;
  1086.   },
  1087.   
  1088.   /**
  1089.    * Reads a directory linked to in a file.
  1090.    * @param   file
  1091.    *          The file containing the directory path
  1092.    * @returns A nsILocalFile object representing the linked directory.
  1093.    */
  1094.   _readDirectoryFromFile: function(file) {
  1095.     var fis = Components.classes["@mozilla.org/network/file-input-stream;1"]
  1096.                         .createInstance(Components.interfaces.nsIFileInputStream);
  1097.     fis.init(file, -1, -1, false);
  1098.     var line = { value: "" };
  1099.     if (fis instanceof nsILineInputStream)
  1100.       fis.readLine(line);
  1101.     fis.close();
  1102.     if (line.value) {
  1103.       var linkedDirectory = Components.classes["@mozilla.org/file/local;1"]
  1104.                                       .createInstance(nsILocalFile);
  1105.       try {
  1106.         linkedDirectory.initWithPath(line.value);
  1107.       }
  1108.       catch (e) {
  1109.         linkedDirectory.setRelativeDescriptor(file.parent, line.value);
  1110.       }
  1111.       
  1112.       return linkedDirectory;
  1113.     }
  1114.     return null;
  1115.   },
  1116.   
  1117.   /**
  1118.    * See nsIExtensionManager.idl
  1119.    */
  1120.   get itemLocations() {
  1121.     var locations = [];
  1122.     if (!this._location.exists())
  1123.       return new FileEnumerator(locations);
  1124.     
  1125.     try {
  1126.       var entries = this._location.directoryEntries.QueryInterface(nsIDirectoryEnumerator);
  1127.       while (true) {
  1128.         var entry = entries.nextFile;
  1129.         if (!entry)
  1130.           break;
  1131.         entry instanceof nsILocalFile;
  1132.         if (!entry.isDirectory() && gIDTest.test(entry.leafName)) {
  1133.           var linkedDirectory = this._readDirectoryFromFile(entry);
  1134.           if (linkedDirectory && linkedDirectory.exists() && 
  1135.               linkedDirectory.isDirectory()) {
  1136.             locations.push(linkedDirectory);
  1137.             this._locationToIDMap[linkedDirectory.persistentDescriptor] = entry.leafName;
  1138.           }
  1139.         }
  1140.         else
  1141.           locations.push(entry);
  1142.       }
  1143.       entries.close();
  1144.     }
  1145.     catch (e) { 
  1146.     }
  1147.     return new FileEnumerator(locations);
  1148.   },
  1149.   
  1150.   /**
  1151.    * Retrieves the GUID for an item at the specified location.
  1152.    * @param   file
  1153.    *          The location where an item might live.
  1154.    * @returns The ID for an item that might live at the location specified.
  1155.    * 
  1156.    * N.B. This function makes no promises about whether or not this path is 
  1157.    *      actually maintained by this Install Location.
  1158.    */
  1159.   getIDForLocation: function(file) {
  1160.     var section = file.leafName;
  1161.     var filePD = file.persistentDescriptor;
  1162.     if (filePD in this._locationToIDMap) 
  1163.       section = this._locationToIDMap[filePD];
  1164.     
  1165.     if (gIDTest.test(section))
  1166.       return RegExp.$1;
  1167.     return undefined;
  1168.   },
  1169.   
  1170.   /**
  1171.    * See nsIExtensionManager.idl
  1172.    */
  1173.   get location() {
  1174.     return this._location.clone();
  1175.   },
  1176.   
  1177.   /**
  1178.    * See nsIExtensionManager.idl
  1179.    */
  1180.   get restricted() {
  1181.     return this._restricted;
  1182.   },
  1183.   
  1184.   /**
  1185.    * See nsIExtensionManager.idl
  1186.    */
  1187.   get canAccess() {
  1188.     if (this._canAccess != null)
  1189.       return this._canAccess;
  1190.  
  1191.     var testFile = this.location;
  1192.     testFile.append("Access Privileges Test");
  1193.     try {
  1194.       testFile.createUnique(nsILocalFile.DIRECTORY_TYPE, PERMS_DIRECTORY);
  1195.       testFile.remove(false);
  1196.       this._canAccess = true;
  1197.     }
  1198.     catch (e) {
  1199.       this._canAccess = false;
  1200.     }
  1201.     return this._canAccess;
  1202.   },
  1203.   
  1204.   /**
  1205.    * See nsIExtensionManager.idl
  1206.    */
  1207.   get priority() {
  1208.     return this._priority;
  1209.   },
  1210.   
  1211.   /**
  1212.    * See nsIExtensionManager.idl
  1213.    */
  1214.   getItemLocation: function(id) {
  1215.     var itemLocation = this.location;
  1216.     itemLocation.append(id);
  1217.     if (itemLocation.exists() && !itemLocation.isDirectory())
  1218.       return this._readDirectoryFromFile(itemLocation);
  1219.     if (!itemLocation.exists() && this.canAccess)
  1220.       itemLocation.create(nsILocalFile.DIRECTORY_TYPE, PERMS_DIRECTORY);
  1221.     return itemLocation;
  1222.   },
  1223.   
  1224.   /**
  1225.    * See nsIExtensionManager.idl
  1226.    */
  1227.   itemIsManagedIndependently: function(id) {
  1228.     var itemLocation = this.location;
  1229.     itemLocation.append(id);
  1230.     return itemLocation.exists() && !itemLocation.isDirectory();      
  1231.   },
  1232.   
  1233.   /**
  1234.    * See nsIExtensionManager.idl
  1235.    */
  1236.   getItemFile: function(id, filePath) {
  1237.     var itemLocation = this.getItemLocation(id).clone();
  1238.     var parts = filePath.split("/");
  1239.     for (var i = 0; i < parts.length; ++i)
  1240.       itemLocation.append(parts[i]);
  1241.     return itemLocation;
  1242.   },
  1243.  
  1244.   /**
  1245.    * Stages the specified file for later.
  1246.    * @param   file
  1247.    *          The file to stage
  1248.    * @param   id
  1249.    *          The GUID of the item the file represents
  1250.    */
  1251.   stageFile: function(file, id) {
  1252.     var stagedFile = this.location;
  1253.     stagedFile.append(DIR_STAGE);
  1254.     stagedFile.append(id);
  1255.     stagedFile.append(file.leafName);
  1256.  
  1257.     // When an incompatible update is successful the file is already staged
  1258.     if (stagedFile.equals(file))
  1259.       return stagedFile;
  1260.  
  1261.     if (stagedFile.exists()) 
  1262.       stagedFile.remove(false);
  1263.       
  1264.     file.copyTo(stagedFile.parent, stagedFile.leafName);
  1265.     
  1266.     // If the file has incorrect permissions set, correct them now.
  1267.     if (!stagedFile.isWritable())
  1268.       stagedFile.permissions = PERMS_FILE;
  1269.     
  1270.     return stagedFile;
  1271.   },
  1272.   
  1273.   /**
  1274.    * Returns the most recently staged package (e.g. the last XPI or JAR in a
  1275.    * directory) for an item and removes items that do not qualify.
  1276.    * @param   id
  1277.    *          The ID of the staged package
  1278.    * @returns an nsIFile if the package exists otherwise null.
  1279.    */
  1280.   getStageFile: function(id) {
  1281.     var stageFile = null;
  1282.     var stageDir = this.location;
  1283.     stageDir.append(DIR_STAGE);
  1284.     stageDir.append(id);
  1285.     if (!stageDir.exists() || !stageDir.isDirectory())
  1286.       return null;
  1287.     try {
  1288.       var entries = stageDir.directoryEntries.QueryInterface(nsIDirectoryEnumerator);
  1289.       while (entries.hasMoreElements()) {
  1290.         var file = entries.nextFile;
  1291.         if (!(file instanceof nsILocalFile))
  1292.           continue;
  1293.         if (file.isDirectory())
  1294.           removeDirRecursive(file);
  1295.         else if (fileIsItemPackage(file)) {
  1296.           if (stageFile)
  1297.             stageFile.remove(false);
  1298.           stageFile = file;
  1299.         }
  1300.         else
  1301.           file.remove(false);
  1302.       }
  1303.     }
  1304.     catch (e) {
  1305.     }
  1306.     if (entries instanceof nsIDirectoryEnumerator)
  1307.       entries.close();
  1308.     return stageFile;
  1309.   },
  1310.   
  1311.   /**
  1312.    * Removes a file from the stage. This cleans up the stage if there is nothing
  1313.    * else left after the remove operation.
  1314.    * @param   file
  1315.    *          The file to remove.
  1316.    */
  1317.   removeFile: function(file) {
  1318.     if (file.exists())
  1319.       file.remove(false);
  1320.     var parent = file.parent;
  1321.     var entries = parent.directoryEntries;    
  1322.     try {
  1323.       // XXXrstrong calling hasMoreElements on a nsIDirectoryEnumerator after
  1324.       // it has been removed will cause a crash on Mac OS X - bug 292823
  1325.       while (parent && !parent.equals(this.location) &&
  1326.             !entries.hasMoreElements()) {
  1327.         parent.remove(false);
  1328.         parent = parent.parent;
  1329.         entries = parent.directoryEntries;
  1330.       }
  1331.       if (entries instanceof nsIDirectoryEnumerator)
  1332.         entries.close();
  1333.     }
  1334.     catch (e) {
  1335.       LOG("DirectoryInstallLocation::removeFile: failed to remove staged " + 
  1336.           " directory = " + parent.path + ", exception = " + e + "\n");
  1337.     }
  1338.   },
  1339.   
  1340.   /**
  1341.    * See nsISupports.idl
  1342.    */
  1343.   QueryInterface: function (iid) {
  1344.     if (!iid.equals(Components.interfaces.nsIInstallLocation) &&
  1345.         !iid.equals(Components.interfaces.nsISupports))
  1346.       throw Components.results.NS_ERROR_NO_INTERFACE;
  1347.     return this;
  1348.   }
  1349. };
  1350.  
  1351. //@line 1278 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/extensions/src/nsExtensionManager.js.in"
  1352.  
  1353. const nsIWindowsRegKey = Components.interfaces.nsIWindowsRegKey;
  1354.  
  1355. /**
  1356.  * An object that identifies the location of installed items based on entries
  1357.  * in the Windows registry.  For each application a subkey is defined that
  1358.  * contains a set of values, where the name of each value is a GUID and the
  1359.  * contents of the value is a filesystem path identifying a directory
  1360.  * containing an installed item.
  1361.  *
  1362.  * @param   name
  1363.  *          The string identifier of this Install Location.
  1364.  * @param   rootKey
  1365.  *          The root key (one of the ROOT_KEY_ values from nsIWindowsRegKey).
  1366.  * @param   restricted
  1367.  *          Indicates that the location may be restricted (e.g., this is
  1368.  *          usually true of a system level install location).
  1369.  * @param   priority
  1370.  *          The priority of this install location.
  1371.  * @constructor
  1372.  */
  1373. function WinRegInstallLocation(name, rootKey, restricted, priority) {
  1374.   this._name = name;
  1375.   this._rootKey = rootKey;
  1376.   this._restricted = restricted;
  1377.   this._priority = priority;
  1378.   this._IDToDirMap = {};
  1379.   this._DirToIDMap = {};
  1380.  
  1381.   // Reading the registry may throw an exception, and that's ok.  In error
  1382.   // cases, we just leave ourselves in the empty state.
  1383.   try {
  1384.     var path = this._appKeyPath + "\\Extensions";
  1385.     var key = Components.classes["@mozilla.org/windows-registry-key;1"]
  1386.                         .createInstance(nsIWindowsRegKey);
  1387.     key.open(this._rootKey, path, nsIWindowsRegKey.ACCESS_READ);
  1388.     this._readAddons(key);
  1389.   } catch (e) {
  1390.     if (key)
  1391.       key.close();
  1392.   }
  1393. }
  1394. WinRegInstallLocation.prototype = {
  1395.   _name       : "",
  1396.   _rootKey    : null,
  1397.   _restricted : false,
  1398.   _priority   : 0,
  1399.   _IDToDirMap : null,  // mapping from ID to directory object
  1400.   _DirToIDMap : null,  // mapping from directory path to ID
  1401.   
  1402.   /**
  1403.    * Retrieves the path of this Application's data key in the registry.
  1404.    */
  1405.   get _appKeyPath() {
  1406.     var appVendor = gApp.vendor;
  1407.     var appName = gApp.name;
  1408.  
  1409. //@line 1340 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/extensions/src/nsExtensionManager.js.in"
  1410.   
  1411.     // XULRunner-based apps may intentionally not specify a vendor:
  1412.     if (appVendor != "")
  1413.       appVendor += "\\";
  1414.  
  1415.     return "SOFTWARE\\" + appVendor + appName;
  1416.   },
  1417.  
  1418.   /**
  1419.    * Read the registry and build a mapping between GUID and directory for each
  1420.    * installed item.
  1421.    * @param   key
  1422.    *          The key that contains the GUID->path pairs
  1423.    */
  1424.   _readAddons: function(key) {
  1425.     var count = key.valueCount; 
  1426.     for (var i = 0; i < count; ++i) {
  1427.       var id = key.getValueName(i);
  1428.  
  1429.       var dir = Components.classes["@mozilla.org/file/local;1"]
  1430.                           .createInstance(nsILocalFile);
  1431.       dir.initWithPath(key.readStringValue(id));
  1432.  
  1433.       if (dir.exists() && dir.isDirectory()) {
  1434.         this._IDToDirMap[id] = dir;
  1435.         this._DirToIDMap[dir.path] = id;
  1436.       }
  1437.     }
  1438.   },
  1439.  
  1440.   get name() {
  1441.     return this._name;
  1442.   },
  1443.  
  1444.   get itemLocations() {
  1445.     var locations = [];
  1446.     for (var id in this._IDToDirMap) {
  1447.       locations.push(this._IDToDirMap[id]);
  1448.     }
  1449.     return new FileEnumerator(locations);
  1450.   },
  1451.  
  1452.   get location() {
  1453.     return null;
  1454.   },
  1455.  
  1456.   get restricted() {
  1457.     return this._restricted;
  1458.   },
  1459.  
  1460.   // you should never be able to write to this location
  1461.   get canAccess() {
  1462.     return false;
  1463.   },
  1464.  
  1465.   get priority() {
  1466.     return this._priority;
  1467.   },
  1468.  
  1469.   getItemLocation: function(id) {
  1470.     return this._IDToDirMap[id];
  1471.   },
  1472.  
  1473.   getIDForLocation: function(dir) {
  1474.     return this._DirToIDMap[dir.path];
  1475.   },
  1476.  
  1477.   getItemFile: function(id, filePath) {
  1478.     var itemLocation = this.getItemLocation(id).clone();
  1479.     var parts = filePath.split("/");
  1480.     for (var i = 0; i < parts.length; ++i)
  1481.       itemLocation.append(parts[i]);
  1482.     return itemLocation;
  1483.   },
  1484.  
  1485.   itemIsManagedIndependently: function(id) {
  1486.     return true;
  1487.   },
  1488.  
  1489.   QueryInterface: function(iid) {
  1490.     if (!iid.equals(Components.interfaces.nsIInstallLocation) &&
  1491.         !iid.equals(Components.interfaces.nsISupports))
  1492.       throw Components.results.NS_ERROR_NO_INTERFACE;
  1493.     return this;
  1494.   }
  1495. };
  1496.  
  1497. //@line 1428 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/extensions/src/nsExtensionManager.js.in"
  1498.  
  1499. /**
  1500.  * An object which handles the installation of an Extension.
  1501.  * @constructor
  1502.  */
  1503. function Installer(ds, id, installLocation, type) {
  1504.   this._ds = ds;
  1505.   this._id = id;
  1506.   this._type = type;
  1507.   this._installLocation = installLocation;
  1508. }
  1509. Installer.prototype = {
  1510.   // Item metadata
  1511.   _id: null,
  1512.   _ds: null,
  1513.   _installLocation: null,
  1514.   _metadataDS: null,
  1515.   
  1516.   /**
  1517.    * Gets the Install Manifest datasource we are installing from.
  1518.    */
  1519.   get metadataDS() {
  1520.     if (!this._metadataDS) {
  1521.       var metadataFile = this._installLocation
  1522.                              .getItemFile(this._id, FILE_INSTALL_MANIFEST);
  1523.       if (!metadataFile.exists()) 
  1524.         return null;
  1525.       this._metadataDS = getInstallManifest(metadataFile);
  1526.       if (!this._metadataDS) {
  1527.         LOG("Installer::install: metadata datasource for extension " + 
  1528.             this._id + " at " + metadataFile.path + " could not be loaded. " + 
  1529.             " Installation will not proceed.");
  1530.       }
  1531.     }
  1532.     return this._metadataDS;
  1533.   },
  1534.   
  1535.   /**
  1536.    * Installs the Extension
  1537.    * @param   file
  1538.    *          A XPI/JAR file to install from. If this is null or does not exist,
  1539.    *          the item is assumed to be an expanded directory, located at the GUID
  1540.    *          key in the supplied Install Location.
  1541.    */
  1542.   installFromFile: function(file) {
  1543.     // Move files from the staging dir into the extension's final home.
  1544.     if (file && file.exists()) {
  1545.       this._installExtensionFiles(file);
  1546.     }
  1547.  
  1548.     if (!this.metadataDS)
  1549.       return;
  1550.  
  1551.     // Upgrade old-style contents.rdf Chrome Manifests if necessary.
  1552.     if (this._type == nsIUpdateItem.TYPE_THEME)
  1553.       this.upgradeThemeChrome();
  1554.     else
  1555.       this.upgradeExtensionChrome();
  1556.  
  1557.     // Add metadata for the extension to the global extension metadata set
  1558.     this._ds.addItemMetadata(this._id, this.metadataDS, this._installLocation);
  1559.   },
  1560.   
  1561.   /**
  1562.    * Safely extract the Extension's files into the target folder.
  1563.    * @param   file
  1564.    *          The XPI/JAR file to install from.
  1565.    */
  1566.   _installExtensionFiles: function(file) {
  1567.     var installer = this;
  1568.     /**
  1569.       * Callback for |safeInstallOperation| that performs file level installation
  1570.       * steps for an Extension.
  1571.       * @param   extensionID
  1572.       *          The GUID of the Extension being installed.
  1573.       * @param   installLocation 
  1574.       *          The Install Location where the Extension is being installed.
  1575.       * @param   xpiFile
  1576.       *          The source XPI file that contains the Extension.
  1577.       */
  1578.     function extractExtensionFiles(extensionID, installLocation, xpiFile) {
  1579.       // Create a logger to log install operations for uninstall. This must be 
  1580.       // created in the |safeInstallOperation| callback, since it creates a file
  1581.       // in the target directory. If we do this outside of the callback, we may
  1582.       // be clobbering a file we should not be.
  1583.       var zipReader = getZipReaderForFile(xpiFile);
  1584.       
  1585.       // create directories first
  1586.       var entries = zipReader.findEntries("*/");
  1587.       while (entries.hasMore()) {
  1588.         var entryName = entries.getNext();
  1589.         var target = installLocation.getItemFile(extensionID, entryName);
  1590.         if (!target.exists()) {
  1591.           try {
  1592.             target.create(nsILocalFile.DIRECTORY_TYPE, PERMS_DIRECTORY);
  1593.           }
  1594.           catch (e) {
  1595.             LOG("extractExtensionsFiles: failed to create target directory for extraction " + 
  1596.                 " file = " + target.path + ", exception = " + e + "\n");
  1597.           }
  1598.         }
  1599.       }
  1600.  
  1601.       entries = zipReader.findEntries(null);
  1602.       while (entries.hasMore()) {
  1603.         var entryName = entries.getNext();
  1604.         target = installLocation.getItemFile(extensionID, entryName);
  1605.         if (target.exists())
  1606.           continue;
  1607.  
  1608.         try {
  1609.           target.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1610.         }
  1611.         catch (e) {
  1612.           LOG("extractExtensionsFiles: failed to create target file for extraction " + 
  1613.               " file = " + target.path + ", exception = " + e + "\n");
  1614.         }
  1615.         zipReader.extract(entryName, target);
  1616.       }
  1617.       zipReader.close();
  1618.     }
  1619.  
  1620.     var installer = this;
  1621.     /**
  1622.       * Callback for |safeInstallOperation| that performs file level installation
  1623.       * steps for a Theme.
  1624.       * @param   id
  1625.       *          The GUID of the Theme being installed.
  1626.       * @param   installLocation 
  1627.       *          The Install Location where the Theme is being installed.
  1628.       * @param   jarFile
  1629.       *          The source JAR file that contains the Theme.
  1630.       */
  1631.     function extractThemeFiles(id, installLocation, jarFile) {
  1632.       var themeDirectory = installLocation.getItemLocation(id);
  1633.       var zipReader = getZipReaderForFile(jarFile);
  1634.  
  1635.       // The only critical file is the install.rdf and we would not have
  1636.       // gotten this far without one.
  1637.       var rootFiles = [FILE_INSTALL_MANIFEST, FILE_CHROME_MANIFEST,
  1638.                        "preview.png", "icon.png"];
  1639.       for (var i = 0; i < rootFiles.length; ++i) {
  1640.         try {
  1641.           var target = installLocation.getItemFile(id, rootFiles[i]);
  1642.           zipReader.extract(rootFiles[i], target);
  1643.         }
  1644.         catch (e) {
  1645.         }
  1646.       }
  1647.  
  1648.       var manifestFile = installLocation.getItemFile(id, FILE_CHROME_MANIFEST);
  1649.       // new theme structure requires a chrome.manifest file
  1650.       if (manifestFile.exists()) {
  1651.         var entries = zipReader.findEntries(DIR_CHROME + "/*");
  1652.         while (entries.hasMore()) {
  1653.           var entryName = entries.getNext();
  1654.           if (entryName.charAt(entryName.length - 1) == "/")
  1655.             continue;
  1656.           target = installLocation.getItemFile(id, entryName);
  1657.           try {
  1658.             target.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1659.           }
  1660.           catch (e) {
  1661.             LOG("extractThemeFiles: failed to create target file for extraction " + 
  1662.                 " file = " + target.path + ", exception = " + e + "\n");
  1663.           }
  1664.           zipReader.extract(entryName, target);
  1665.         }
  1666.         zipReader.close();
  1667.       }
  1668.       else { // old theme structure requires only an install.rdf
  1669.         try {
  1670.           var contentsManifestFile = installLocation.getItemFile(id, FILE_CONTENTS_MANIFEST);
  1671.           contentsManifestFile.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1672.           zipReader.extract(FILE_CONTENTS_MANIFEST, contentsManifestFile);
  1673.         }
  1674.         catch (e) {
  1675.           zipReader.close();
  1676.           LOG("extractThemeFiles: failed to extract contents.rdf: " + target.path);
  1677.           throw e; // let the safe-op clean up
  1678.         }
  1679.         zipReader.close();
  1680.         var chromeDir = installLocation.getItemFile(id, DIR_CHROME);
  1681.         try {
  1682.           jarFile.copyTo(chromeDir, jarFile.leafName);
  1683.         }
  1684.         catch (e) {
  1685.           LOG("extractThemeFiles: failed to copy theme JAR file to: " + chromeDir.path);
  1686.           throw e; // let the safe-op clean up
  1687.         }
  1688.  
  1689.         if (!installer.metadataDS && installer._type == nsIUpdateItem.TYPE_THEME) {
  1690.           if (contentsManifestFile && contentsManifestFile.exists()) {
  1691.             var contentsManifest = gRDF.GetDataSourceBlocking(getURLSpecFromFile(contentsManifestFile));
  1692.             showOldThemeError(contentsManifest);
  1693.           }
  1694.           LOG("Theme JAR file: " + jarFile.leafName + " contains an Old-Style " + 
  1695.               "Theme that is not compatible with this version of the software.");
  1696.           throw new Error("Old Theme"); // let the safe-op clean up
  1697.         }
  1698.       }
  1699.     }
  1700.  
  1701.     var callback = extractExtensionFiles;
  1702.     if (this._type == nsIUpdateItem.TYPE_THEME)
  1703.       callback = extractThemeFiles;
  1704.     safeInstallOperation(this._id, this._installLocation,
  1705.                           { callback: callback, data: file });
  1706.   },
  1707.   
  1708.   /** 
  1709.    * Upgrade contents.rdf Chrome Manifests used by this Theme to the new 
  1710.    * chrome.manifest format if necessary.
  1711.    */
  1712.   upgradeThemeChrome: function() {
  1713.     // Use the Chrome Registry API to install the theme there
  1714.     var cr = Components.classes["@mozilla.org/chrome/chrome-registry;1"]
  1715.                        .getService(Components.interfaces.nsIToolkitChromeRegistry);
  1716.     var manifestFile = this._installLocation.getItemFile(this._id, FILE_CHROME_MANIFEST);
  1717.     if (manifestFile.exists() ||
  1718.         this._id == stripPrefix(RDFURI_DEFAULT_THEME, PREFIX_ITEM_URI))
  1719.       return;
  1720.  
  1721.     try {
  1722.       // creates a chrome manifest for themes
  1723.       var manifestURI = getURIFromFile(manifestFile);
  1724.       var chromeDir = this._installLocation.getItemFile(this._id, DIR_CHROME);
  1725.       // We're relying on the fact that there is only one JAR file
  1726.       // in the "chrome" directory. This is a hack, but it works.
  1727.       var entries = chromeDir.directoryEntries.QueryInterface(nsIDirectoryEnumerator);
  1728.       var jarFile = entries.nextFile;
  1729.       if (jarFile) {
  1730.         var jarFileURI = getURIFromFile(jarFile);
  1731.         var contentsURI = newURI("jar:" + jarFileURI.spec + "!/");
  1732.         var contentsFile = this._installLocation.getItemFile(this._id, FILE_CONTENTS_MANIFEST);
  1733.         var contentsFileURI = getURIFromFile(contentsFile.parent);
  1734.  
  1735.         cr.processContentsManifest(contentsFileURI, manifestURI, contentsURI, false, true);
  1736.       }
  1737.       entries.close();
  1738.       contentsFile.remove(false);
  1739.     }
  1740.     catch (e) {
  1741.       // Failed to register chrome, for any number of reasons - non-existent 
  1742.       // contents.rdf file at the location specified, malformed contents.rdf, 
  1743.       // etc. Set the pending op to be OP_NEEDS_UNINSTALL so that the 
  1744.       // extension is uninstalled properly during the subsequent uninstall 
  1745.       // pass in |ExtensionManager::_finalizeOperations|
  1746.       LOG("upgradeThemeChrome: failed for theme " + this._id + " - why " + 
  1747.           "not convert to the new chrome.manifest format while you're at it? " + 
  1748.           "Failure exception: " + e);
  1749.       showMessage("malformedRegistrationTitle", [], "malformedRegistrationMessage",
  1750.                   [BundleManager.appName]);
  1751.  
  1752.       var stageFile = this._installLocation.getStageFile(this._id);
  1753.       if (stageFile)
  1754.         this._installLocation.removeFile(stageFile);
  1755.  
  1756.       StartupCache.put(this._installLocation, this._id, OP_NEEDS_UNINSTALL, true);
  1757.       StartupCache.write();
  1758.     }
  1759.   },
  1760.  
  1761.   /** 
  1762.    * Upgrade contents.rdf Chrome Manifests used by this Extension to the new 
  1763.    * chrome.manifest format if necessary.
  1764.    */
  1765.   upgradeExtensionChrome: function() {
  1766.     // If the extension is aware of the new flat chrome manifests and has 
  1767.     // included one, just use it instead of generating one from the
  1768.     // install.rdf/contents.rdf data.
  1769.     var manifestFile = this._installLocation.getItemFile(this._id, FILE_CHROME_MANIFEST);
  1770.     if (manifestFile.exists())
  1771.       return;
  1772.  
  1773.     try {
  1774.       // Enumerate the metadata datasource files collection and register chrome
  1775.       // for each file, calling _registerChrome for each.
  1776.       var chromeDir = this._installLocation.getItemFile(this._id, DIR_CHROME);
  1777.       
  1778.       if (!manifestFile.parent.exists())
  1779.         return;
  1780.  
  1781.       // Even if an extension doesn't have any chrome, we generate an empty
  1782.       // manifest file so that we don't try to upgrade from the "old-style"
  1783.       // chrome manifests at every startup.
  1784.       manifestFile.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1785.  
  1786.       var manifestURI = getURIFromFile(manifestFile);
  1787.       var files = this.metadataDS.GetTargets(gInstallManifestRoot, EM_R("file"), true);
  1788.       while (files.hasMoreElements()) {
  1789.         var file = files.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  1790.         var chromeFile = chromeDir.clone();
  1791.         var fileName = file.Value.substr("urn:mozilla:extension:file:".length, file.Value.length);
  1792.         chromeFile.append(fileName);
  1793.  
  1794.         var fileURLSpec = getURLSpecFromFile(chromeFile);
  1795.         if (!chromeFile.isDirectory()) {
  1796.           var zipReader = getZipReaderForFile(chromeFile);
  1797.           fileURLSpec = "jar:" + fileURLSpec + "!/";
  1798.           var contentsFile = this._installLocation.getItemFile(this._id, FILE_CONTENTS_MANIFEST);
  1799.           contentsFile.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1800.         }
  1801.  
  1802.         var providers = [EM_R("package"), EM_R("skin"), EM_R("locale")];
  1803.         for (var i = 0; i < providers.length; ++i) {
  1804.           var items = this.metadataDS.GetTargets(file, providers[i], true);
  1805.           while (items.hasMoreElements()) {
  1806.             var item = items.getNext().QueryInterface(Components.interfaces.nsIRDFLiteral);
  1807.             var fileURI = newURI(fileURLSpec + item.Value);
  1808.             // Extract the contents.rdf files instead of opening them inside of
  1809.             // the jar. This prevents the jar from being cached by the zip
  1810.             // reader which will keep the jar in use and prevent deletion.
  1811.             if (zipReader) {
  1812.               zipReader.extract(item.Value + FILE_CONTENTS_MANIFEST, contentsFile);
  1813.               var contentsFileURI = getURIFromFile(contentsFile.parent);
  1814.             }
  1815.             else
  1816.               contentsFileURI = fileURI;
  1817.  
  1818.             var cr = Components.classes["@mozilla.org/chrome/chrome-registry;1"]
  1819.                                .getService(Components.interfaces.nsIToolkitChromeRegistry);
  1820.             cr.processContentsManifest(contentsFileURI, manifestURI, fileURI, true, false);
  1821.           }
  1822.         }
  1823.         if (zipReader) {
  1824.           zipReader.close();
  1825.           zipReader = null;
  1826.           contentsFile.remove(false);
  1827.         }
  1828.       }
  1829.     }
  1830.     catch (e) {
  1831.       // Failed to register chrome, for any number of reasons - non-existent 
  1832.       // contents.rdf file at the location specified, malformed contents.rdf, 
  1833.       // etc. Set the pending op to be OP_NEEDS_UNINSTALL so that the 
  1834.       // extension is uninstalled properly during the subsequent uninstall 
  1835.       // pass in |ExtensionManager::_finalizeOperations|
  1836.       LOG("upgradeExtensionChrome: failed for extension " + this._id + " - why " + 
  1837.           "not convert to the new chrome.manifest format while you're at it? " + 
  1838.           "Failure exception: " + e);
  1839.       showMessage("malformedRegistrationTitle", [], "malformedRegistrationMessage",
  1840.                   [BundleManager.appName]);
  1841.  
  1842.       var stageFile = this._installLocation.getStageFile(this._id);
  1843.       if (stageFile)
  1844.         this._installLocation.removeFile(stageFile);
  1845.  
  1846.       StartupCache.put(this._installLocation, this._id, OP_NEEDS_UNINSTALL, true);
  1847.       StartupCache.write();
  1848.     }
  1849.   }  
  1850. };
  1851.  
  1852. /**
  1853.  * Safely attempt to perform a caller-defined install operation for a given
  1854.  * item ID. Using aggressive success-safety checks, this function will attempt
  1855.  * to move an existing location for an item aside and then allow installation
  1856.  * into the appropriate folder. If any operation fails the installation will 
  1857.  * abort and roll back from the moved-aside old version.
  1858.  * @param   itemID
  1859.  *          The GUID of the item to perform the operation on.
  1860.  * @param   installLocation
  1861.  *          The Install Location where the item is installed.
  1862.  * @param   installCallback
  1863.  *          A caller supplied JS object with the following properties:
  1864.  *          "data"      A data parameter to be passed to the callback.
  1865.  *          "callback"  A function to perform the install operation. This
  1866.  *                      function is passed three parameters:
  1867.  *                      1. The GUID of the item being operated on.
  1868.  *                      2. The Install Location where the item is installed.
  1869.  *                      3. The "data" parameter on the installCallback object.
  1870.  */
  1871. function safeInstallOperation(itemID, installLocation, installCallback) {
  1872.   var movedFiles = [];
  1873.   
  1874.   /**
  1875.    * Reverts a deep move by moving backed up files back to their original
  1876.    * location.
  1877.    */
  1878.   function rollbackMove()
  1879.   {
  1880.     for (var i = 0; i < movedFiles.length; ++i) {
  1881.       var oldFile = movedFiles[i].oldFile;
  1882.       var newFile = movedFiles[i].newFile;
  1883.       try {
  1884.         newFile.moveTo(oldFile.parent, newFile.leafName);
  1885.       }
  1886.       catch (e) {
  1887.         LOG("safeInstallOperation: failed to roll back files after an install " + 
  1888.             "operation failed. Failed to roll back: " + newFile.path + " to: " + 
  1889.             oldFile.path + " ... aborting installation.");
  1890.         throw e;
  1891.       }
  1892.     }
  1893.   }
  1894.   
  1895.   /**
  1896.    * Moves a file to a new folder.
  1897.    * @param   file
  1898.    *          The file to move
  1899.    * @param   destination
  1900.    *          The target folder
  1901.    */
  1902.   function moveFile(file, destination) {
  1903.     try {
  1904.       var oldFile = file.clone();
  1905.       file.moveTo(destination, file.leafName);
  1906.       movedFiles.push({ oldFile: oldFile, newFile: file });
  1907.     }
  1908.     catch (e) {
  1909.       LOG("safeInstallOperation: failed to back up file: " + file.path + " to: " + 
  1910.           destination.path + " ... rolling back file moves and aborting " + 
  1911.           "installation.");
  1912.       rollbackMove();
  1913.       throw e;
  1914.     }
  1915.   }
  1916.   
  1917.   /**
  1918.    * Moves a directory to a new location. If any part of the move fails,
  1919.    * files already moved will be rolled back.
  1920.    * @param   sourceDir
  1921.    *          The directory to move
  1922.    * @param   targetDir
  1923.    *          The destination directory
  1924.    * @param   currentDir
  1925.    *          The current directory (a subdirectory of |sourceDir| or 
  1926.    *          |sourceDir| itself) we are moving files from.
  1927.    */
  1928.   function moveDirectory(sourceDir, targetDir, currentDir) {
  1929.     var entries = currentDir.directoryEntries.QueryInterface(nsIDirectoryEnumerator);
  1930.     while (true) {
  1931.       var entry = entries.nextFile;
  1932.       if (!entry)
  1933.         break;
  1934.       if (entry.isDirectory())
  1935.         moveDirectory(sourceDir, targetDir, entry);
  1936.       else if (entry instanceof nsILocalFile) {
  1937.         var rd = entry.getRelativeDescriptor(sourceDir);
  1938.         var destination = targetDir.clone().QueryInterface(nsILocalFile);
  1939.         destination.setRelativeDescriptor(targetDir, rd);
  1940.         moveFile(entry, destination.parent);
  1941.       }
  1942.     }
  1943.     entries.close();
  1944.   }
  1945.   
  1946.   /**
  1947.    * Removes the temporary backup directory where we stored files. 
  1948.    * @param   directory
  1949.    *          The backup directory to remove
  1950.    */
  1951.   function cleanUpTrash(directory) {
  1952.     try {
  1953.       // Us-generated. Safe.
  1954.       if (directory && directory.exists())
  1955.         removeDirRecursive(directory);
  1956.     }
  1957.     catch (e) {
  1958.       LOG("safeInstallOperation: failed to clean up the temporary backup of the " + 
  1959.           "older version: " + itemLocationTrash.path);
  1960.       // This is a non-fatal error. Annoying, but non-fatal. 
  1961.     }
  1962.   }
  1963.   
  1964.   if (!installLocation.itemIsManagedIndependently(itemID)) {
  1965.     var itemLocation = installLocation.getItemLocation(itemID);
  1966.     if (itemLocation.exists()) {
  1967.       var trashDirName = itemID + "-trash";
  1968.       var itemLocationTrash = itemLocation.parent.clone();
  1969.       itemLocationTrash.append(trashDirName);
  1970.       if (itemLocationTrash.exists()) {
  1971.         // We can remove recursively here since this is a folder we created, not
  1972.         // one the user specified. If this fails, it'll throw, and the caller 
  1973.         // should stop installation.
  1974.         try {
  1975.           removeDirRecursive(itemLocationTrash);
  1976.         }
  1977.         catch (e) {
  1978.           LOG("safeFileOperation: failed to remove existing trash directory " + 
  1979.               itemLocationTrash.path + " ... aborting installation.");
  1980.           throw e;
  1981.         }
  1982.       }
  1983.       
  1984.       // Move the directory that contains the existing version of the item aside, 
  1985.       // into {GUID}-trash. This will throw if there's a failure and the install
  1986.       // will abort.
  1987.       moveDirectory(itemLocation, itemLocationTrash, itemLocation);
  1988.       
  1989.       // Clean up the original location, if necessary. Again, this is a path we 
  1990.       // generated, so it is safe to recursively delete.
  1991.       try {
  1992.         removeDirRecursive(itemLocation);
  1993.       }
  1994.       catch (e) {
  1995.         LOG("safeInstallOperation: failed to clean up item location after its contents " + 
  1996.             "were properly backed up. Failed to clean up: " + itemLocation.path + 
  1997.             " ... rolling back file moves and aborting installation.");
  1998.         rollbackMove();
  1999.         cleanUpTrash(itemLocationTrash);
  2000.         throw e;
  2001.       }
  2002.     }
  2003.   }
  2004.   else if (installLocation.name == KEY_APP_PROFILE ||
  2005.            installLocation.name == KEY_APP_GLOBAL) {
  2006.     // Check for a pointer file and move it aside if it exists
  2007.     var pointerFile = installLocation.location.clone();
  2008.     pointerFile.append(itemID);
  2009.     if (pointerFile.exists() && !pointerFile.isDirectory()) {
  2010.       var trashFileName = itemID + "-trash";
  2011.       var itemLocationTrash = installLocation.location.clone();
  2012.       itemLocationTrash.append(trashFileName);
  2013.       if (itemLocationTrash.exists()) {
  2014.         // We can remove recursively here since this is a folder we created, not
  2015.         // one the user specified. If this fails, it'll throw, and the caller 
  2016.         // should stop installation.
  2017.         try {
  2018.           removeDirRecursive(itemLocationTrash);
  2019.         }
  2020.         catch (e) {
  2021.           LOG("safeFileOperation: failed to remove existing trash directory " + 
  2022.               itemLocationTrash.path + " ... aborting installation.");
  2023.           throw e;
  2024.         }
  2025.       }
  2026.       itemLocationTrash.create(nsILocalFile.DIRECTORY_TYPE, PERMS_DIRECTORY);
  2027.       // Move the pointer file to the trash.
  2028.       moveFile(pointerFile, itemLocationTrash);
  2029.     }
  2030.   }
  2031.       
  2032.   // Now tell the client to do their stuff.
  2033.   try {
  2034.     installCallback.callback(itemID, installLocation, installCallback.data);
  2035.   }
  2036.   catch (e) {
  2037.     // This means the install operation failed. Remove everything and roll back.
  2038.     LOG("safeInstallOperation: install operation (caller-supplied callback) failed, " + 
  2039.         "rolling back file moves and aborting installation.");
  2040.     try {
  2041.       // Us-generated. Safe.
  2042.       removeDirRecursive(itemLocation);
  2043.     }
  2044.     catch (e) {
  2045.       LOG("safeInstallOperation: failed to remove the folder we failed to install " + 
  2046.           "an item into: " + itemLocation.path + " -- There is not much to suggest " + 
  2047.           "here... maybe restart and try again?");
  2048.       cleanUpTrash(itemLocationTrash);
  2049.       throw e;
  2050.     }
  2051.     rollbackMove();
  2052.     cleanUpTrash(itemLocationTrash);
  2053.     throw e;        
  2054.   }
  2055.   
  2056.   // Now, and only now - after everything else has succeeded (against all odds!) 
  2057.   // remove the {GUID}-trash directory where we stashed the old version of the 
  2058.   // item.
  2059.   cleanUpTrash(itemLocationTrash);
  2060. }
  2061.  
  2062. /**
  2063.  * Manages the list of pending operations.
  2064.  */
  2065. var PendingOperations = {
  2066.   _ops: { },
  2067.  
  2068.   /**
  2069.    * Adds an entry to the Pending Operations List
  2070.    * @param   opType
  2071.    *          The type of Operation to be performed
  2072.    * @param   entry
  2073.    *          A JS Object representing the item to be operated on:
  2074.    *          "locationKey"   The name of the Install Location where the item
  2075.    *                          is installed.
  2076.    *          "id"            The GUID of the item.
  2077.    */
  2078.   addItem: function(opType, entry) {
  2079.     if (opType == OP_NONE)
  2080.       this.clearOpsForItem(entry.id);
  2081.     else {
  2082.       if (!(opType in this._ops))
  2083.         this._ops[opType] = { };
  2084.       this._ops[opType][entry.id] = entry.locationKey;
  2085.     }
  2086.   },
  2087.   
  2088.   /**
  2089.    * Removes a Pending Operation from the list
  2090.    * @param   opType
  2091.    *          The type of Operation being removed
  2092.    * @param   id
  2093.    *          The GUID of the item to remove the entry for
  2094.    */
  2095.   clearItem: function(opType, id) {
  2096.     if (opType in this._ops && id in this._ops[opType])
  2097.       delete this._ops[opType][id];
  2098.   },
  2099.   
  2100.   /**
  2101.    * Removes all Pending Operation for an item
  2102.    * @param   id
  2103.    *          The ID of the item to remove the entries for
  2104.    */
  2105.   clearOpsForItem: function(id) {
  2106.     for (var opType in this._ops) {
  2107.       if (id in this._ops[opType])
  2108.         delete this._ops[opType][id];
  2109.     }
  2110.   },
  2111.  
  2112.   /**
  2113.    * Remove all Pending Operations of a certain type
  2114.    * @param   opType
  2115.    *          The type of Operation to remove all entries for
  2116.    */
  2117.   clearItems: function(opType) {
  2118.     if (opType in this._ops)
  2119.       delete this._ops[opType];
  2120.   },
  2121.   
  2122.   /**
  2123.    * Get an array of operations of a certain type
  2124.    * @param   opType
  2125.    *          The type of Operation to return a list of
  2126.    */
  2127.   getOperations: function(opType) {
  2128.     if (!(opType in this._ops))
  2129.       return [];
  2130.     var ops = [];
  2131.     for (var id in this._ops[opType])
  2132.       ops.push( {id: id, locationKey: this._ops[opType][id] } );
  2133.     return ops;
  2134.   },
  2135.   
  2136.   /**
  2137.    * The total number of Pending Operations, for all types.
  2138.    */
  2139.   get size() {
  2140.     var size = 0;
  2141.     for (var opType in this._ops) {
  2142.       for (var id in this._ops[opType])
  2143.         ++size;
  2144.     }
  2145.     return size;
  2146.   }
  2147. };
  2148.  
  2149. /**
  2150.  * Manages registered Install Locations
  2151.  */
  2152. var InstallLocations = { 
  2153.   _locations: { },
  2154.  
  2155.   /**
  2156.    * A nsISimpleEnumerator of all available Install Locations.
  2157.    */
  2158.   get enumeration() {
  2159.     var installLocations = [];
  2160.     for (var key in this._locations) 
  2161.       installLocations.push(InstallLocations.get(key));
  2162.     return new ArrayEnumerator(installLocations);
  2163.   },
  2164.   
  2165.   /**
  2166.    * Gets a named Install Location
  2167.    * @param   name
  2168.    *          The name of the Install Location to get
  2169.    */
  2170.   get: function(name) {
  2171.     return name in this._locations ? this._locations[name] : null;
  2172.   },
  2173.   
  2174.   /**
  2175.    * Registers an Install Location
  2176.    * @param   installLocation
  2177.    *          The Install Location to register
  2178.    */
  2179.   put: function(installLocation) {
  2180.     this._locations[installLocation.name] = installLocation;
  2181.   }
  2182. };
  2183.  
  2184. /**
  2185.  * Manages the Startup Cache. The Startup Cache is a representation
  2186.  * of the contents of extensions.cache, a list of all
  2187.  * items the Extension System knows about, whether or not they
  2188.  * are active or visible.
  2189.  */
  2190. var StartupCache = {
  2191.   /**
  2192.    * Location Name -> GUID hash of entries from the Startup Cache file
  2193.    * Each entry has the following properties:
  2194.    *  "descriptor"    The location on disk of the item
  2195.    *  "mtime"         The time the location was last modified
  2196.    *  "op"            Any pending operations on this item.
  2197.    *  "location"      The Install Location name where the item is installed.
  2198.    */
  2199.   entries: { },
  2200.  
  2201.   /**
  2202.    * Puts an entry into the Startup Cache
  2203.    * @param   installLocation
  2204.    *          The Install Location where the item is installed
  2205.    * @param   id
  2206.    *          The GUID of the item
  2207.    * @param   op
  2208.    *          The name of the operation to be performed
  2209.    * @param   shouldCreate
  2210.    *          Whether or not we should create a new entry for this item
  2211.    *          in the cache if one does not already exist. 
  2212.    */
  2213.   put: function(installLocation, id, op, shouldCreate) {
  2214.     var itemLocation = installLocation.getItemLocation(id);
  2215.  
  2216.     var descriptor = null;
  2217.     var mtime = null;
  2218.     if (itemLocation) {
  2219.       itemLocation.QueryInterface(nsILocalFile);
  2220.       descriptor = getDescriptorFromFile(itemLocation, installLocation);
  2221.       if (itemLocation.exists() && itemLocation.isDirectory())
  2222.         mtime = Math.floor(itemLocation.lastModifiedTime / 1000);
  2223.     }
  2224.  
  2225.     this._putRaw(installLocation.name, id, descriptor, mtime, op, shouldCreate);
  2226.   },
  2227.  
  2228.   /**
  2229.    * Private helper function for putting an entry into the Startup Cache
  2230.    * without relying on the presence of its associated nsIInstallLocation
  2231.    * instance.
  2232.    *
  2233.    * @param key
  2234.    *        The install location name.
  2235.    * @param id
  2236.    *        The ID of the item.
  2237.    * @param descriptor
  2238.    *        Value returned from absoluteDescriptor.  May be null, in which
  2239.    *        case the descriptor field is not updated.
  2240.    * @param mtime
  2241.    *        The last modified time of the item.  May be null, in which case the
  2242.    *        descriptor field is not updated.
  2243.    * @param op
  2244.    *        The OP code to store with the entry.
  2245.    * @param shouldCreate
  2246.    *        Boolean value indicating whether to create or delete the entry.
  2247.    */
  2248.   _putRaw: function(key, id, descriptor, mtime, op, shouldCreate) {
  2249.     if (!(key in this.entries))
  2250.       this.entries[key] = { };
  2251.     if (!(id in this.entries[key]))
  2252.       this.entries[key][id] = { };
  2253.     if (shouldCreate) {
  2254.       if (!this.entries[key][id]) 
  2255.         this.entries[key][id] = { };
  2256.  
  2257.       var entry = this.entries[key][id];
  2258.  
  2259.       if (descriptor)
  2260.         entry.descriptor = descriptor;
  2261.       if (mtime) 
  2262.         entry.mtime = mtime;
  2263.       entry.op = op;
  2264.       entry.location = key;
  2265.     }
  2266.     else
  2267.       this.entries[key][id] = null;
  2268.   },
  2269.   
  2270.   /**
  2271.    * Clears an entry from the Startup Cache
  2272.    * @param   installLocation
  2273.    *          The Install Location where item is installed
  2274.    * @param   id
  2275.    *          The GUID of the item.
  2276.    */
  2277.   clearEntry: function(installLocation, id) {
  2278.     var key = installLocation.name;
  2279.     if (key in this.entries && id in this.entries[key])
  2280.       this.entries[key][id] = null;
  2281.   },
  2282.   
  2283.   /**
  2284.    * Get all the startup cache entries for a particular ID.
  2285.    * @param   id
  2286.    *          The GUID of the item to locate.
  2287.    * @returns An array of Startup Cache entries for the specified ID.
  2288.    */
  2289.   findEntries: function(id) {
  2290.     var entries = [];
  2291.     for (var key in this.entries) {
  2292.       if (id in this.entries[key]) 
  2293.         entries.push(this.entries[key][id]);
  2294.     }
  2295.     return entries;
  2296.   },
  2297.  
  2298.   /** 
  2299.    * Read the Item-Change manifest file into a hash of properties.
  2300.    * The Item-Change manifest currently holds a list of paths, with the last
  2301.    * mtime for each path, and the GUID of the item at that path.
  2302.    */
  2303.   read: function() {
  2304.     var itemChangeManifest = getFile(KEY_PROFILEDIR, [FILE_EXTENSIONS_STARTUP_CACHE]);
  2305.     if (!itemChangeManifest.exists()) {
  2306.       // There is no change manifest for some reason, either we're in an initial
  2307.       // state or something went wrong with one of the other files and the
  2308.       // change manifest was removed. Return an empty dataset and rebuild.
  2309.       return;
  2310.     }
  2311.     var fis = Components.classes["@mozilla.org/network/file-input-stream;1"]
  2312.                         .createInstance(Components.interfaces.nsIFileInputStream);
  2313.     fis.init(itemChangeManifest, -1, -1, false);
  2314.     if (fis instanceof nsILineInputStream) {
  2315.       var line = { value: "" };
  2316.       var more = false;
  2317.       do {
  2318.         more = fis.readLine(line);
  2319.         if (line.value) {
  2320.           // The Item-Change manifest is formatted like so:
  2321.           //  (pd = descriptor)
  2322.           // location-key\tguid-of-item\tpd-to-extension1\tmtime-of-pd\tpending-op
  2323.           // location-key\tguid-of-item\tpd-to-extension2\tmtime-of-pd\tpending-op
  2324.           // ...
  2325.           // We hash on location-key first, because we don't want to have to 
  2326.           // spin up the main extensions datasource on every start to determine
  2327.           // the Install Location for an item.
  2328.           // We hash on guid second, because we want a way to quickly determine
  2329.           // item GUID during a check loop that runs on every startup.
  2330.           var parts = line.value.split("\t");
  2331.           var op = parts[4];
  2332.           this._putRaw(parts[0], parts[1], parts[2], parts[3], op, true);
  2333.           if (op)
  2334.             PendingOperations.addItem(op, { locationKey: parts[0], id: parts[1] });
  2335.         }
  2336.       }
  2337.       while (more);
  2338.     }
  2339.     fis.close();
  2340.   },
  2341.  
  2342.   /**
  2343.    * Writes the Startup Cache to disk
  2344.    */
  2345.   write: function() {
  2346.     var extensionsCacheFile = getFile(KEY_PROFILEDIR, [FILE_EXTENSIONS_STARTUP_CACHE]);
  2347.     var fos = openSafeFileOutputStream(extensionsCacheFile);
  2348.     for (var locationKey in this.entries) {
  2349.       for (var id in this.entries[locationKey]) {
  2350.         var entry = this.entries[locationKey][id];
  2351.         if (entry) {
  2352.           try {
  2353.             var itemLocation = getFileFromDescriptor(entry.descriptor, InstallLocations.get(locationKey));
  2354.  
  2355.             // Update our knowledge of this item's last-modified-time.
  2356.             // XXXdarin: this may cause us to miss changes in some cases.
  2357.             var itemMTime = 0;
  2358.             if (itemLocation.exists() && itemLocation.isDirectory())
  2359.               itemMTime = Math.floor(itemLocation.lastModifiedTime / 1000);
  2360.  
  2361.             // Each line in the startup cache manifest is in this form:
  2362.             // location-key\tid-of-item\tpd-to-extension1\tmtime-of-pd\tpending-op
  2363.             var line = locationKey + "\t" + id + "\t" + entry.descriptor + "\t" +
  2364.                        itemMTime + "\t" + entry.op + "\r\n";
  2365.             fos.write(line, line.length);
  2366.           }
  2367.           catch (e) {}
  2368.         }
  2369.       }
  2370.     }
  2371.     closeSafeFileOutputStream(fos);
  2372.   }
  2373. };
  2374.  
  2375. /**
  2376.  * Manages the Blocklist. The Blocklist is a representation of the contents of
  2377.  * blocklist.xml and allows us to remotely disable / re-enable blocklisted
  2378.  * items managed by the Extension Manager with an item's appDisabled property.
  2379.  */
  2380. var Blocklist = {
  2381.   /**
  2382.    * Extension ID -> array of Version Ranges
  2383.    * Each value in the version range array is a JS Object that has the
  2384.    * following properties:
  2385.    *   "minVersion"  The minimum version in a version range (default = 0)
  2386.    *   "maxVersion"  The maximum version in a version range (default = *)
  2387.    *   "targetApps"  Application ID -> array of Version Ranges
  2388.    *                 (default = current application ID)
  2389.    *                 Each value in the version range array is a JS Object that
  2390.    *                 has the following properties:
  2391.    *                   "minVersion"  The minimum version in a version range
  2392.    *                                 (default = 0)
  2393.    *                   "maxVersion"  The maximum version in a version range
  2394.    *                                 (default = *)
  2395.    */
  2396.   entries: null,
  2397.  
  2398.   notify: function() {
  2399.     if (getPref("getBoolPref", PREF_BLOCKLIST_ENABLED, true) == false)
  2400.       return;
  2401.  
  2402.     try {
  2403.       var dsURI = gPref.getCharPref(PREF_BLOCKLIST_URL);
  2404.     }
  2405.     catch (e) {
  2406.       LOG("Blocklist::notify: The " + PREF_BLOCKLIST_URL + " preference" + 
  2407.           " is missing!");
  2408.       return;
  2409.     }
  2410.  
  2411.     dsURI = dsURI.replace(/%APP_ID%/g, gApp.ID);
  2412.     dsURI = dsURI.replace(/%APP_VERSION%/g, gApp.version);
  2413.     // Verify that the URI is valid
  2414.     try {
  2415.       var uri = newURI(dsURI);
  2416.     }
  2417.     catch (e) {
  2418.       LOG("Blocklist::notify: There was an error creating the blocklist URI\r\n" + 
  2419.           "for: " + dsURI + ", error: " + e);
  2420.       return;
  2421.     }
  2422.  
  2423.     var request = Components.classes["@mozilla.org/xmlextras/xmlhttprequest;1"]
  2424.                             .createInstance(Components.interfaces.nsIXMLHttpRequest);
  2425.     request.open("GET", uri.spec, true);
  2426.     request.channel.notificationCallbacks = new BadCertHandler();
  2427.     request.overrideMimeType("text/xml");
  2428.     request.setRequestHeader("Cache-Control", "no-cache");
  2429.  
  2430.     var self = this;
  2431.     request.onerror = function(event) { self.onXMLError(event); };
  2432.     request.onload  = function(event) { self.onXMLLoad(event);  };
  2433.     request.send(null);
  2434.   },
  2435.  
  2436.   onXMLLoad: function(aEvent) {
  2437.     var request = aEvent.target;
  2438.     try {
  2439.       checkCert(request.channel);
  2440.     }
  2441.     catch (e) {
  2442.       LOG("Blocklist::onXMLLoad: " + e);
  2443.       return;
  2444.     }
  2445.     var responseXML = request.responseXML;
  2446.     if (!responseXML || responseXML.documentElement.namespaceURI == XMLURI_PARSE_ERROR ||
  2447.         (request.status != 200 && request.status != 0)) {
  2448.       LOG("Blocklist::onXMLLoad: there was an error during load");
  2449.       return;
  2450.     }
  2451.     var blocklistFile = getFile(KEY_PROFILEDIR, [FILE_BLOCKLIST]);
  2452.     if (blocklistFile.exists())
  2453.       blocklistFile.remove(false);
  2454.     var fos = openSafeFileOutputStream(blocklistFile);
  2455.     fos.write(request.responseText, request.responseText.length);
  2456.     closeSafeFileOutputStream(fos);
  2457.     this.entries = this._loadBlocklistFromFile(getFile(KEY_PROFILEDIR,
  2458.                                                        [FILE_BLOCKLIST]));
  2459.     var em = Components.classes["@mozilla.org/extensions/manager;1"]
  2460.                        .getService(Components.interfaces.nsIExtensionManager);
  2461.     em.checkForBlocklistChanges();
  2462.   },
  2463.  
  2464.   onXMLError: function(aEvent) {
  2465.     try {
  2466.       var request = aEvent.target;
  2467.       // the following may throw (e.g. a local file or timeout)
  2468.       var status = request.status;
  2469.     }
  2470.     catch (e) {
  2471.       request = aEvent.target.channel.QueryInterface(Components.interfaces.nsIRequest);
  2472.       status = request.status;
  2473.     }
  2474.     var statusText = request.statusText;
  2475.     // When status is 0 we don't have a valid channel.
  2476.     if (status == 0)
  2477.       statusText = "nsIXMLHttpRequest channel unavailable";
  2478.     LOG("Blocklist:onError: There was an error loading the blocklist file\r\n" + 
  2479.         statusText);
  2480.   },
  2481.  
  2482.   /**
  2483.    * The blocklist XML file looks something like this:
  2484.    *
  2485.    * <blocklist xmlns="http://www.mozilla.org/2006/addons-blocklist">
  2486.    *   <emItems>
  2487.    *     <emItem id="item_1@domain">
  2488.    *       <versionRange minVersion="1.0" maxVersion="2.0.*">
  2489.    *         <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}">
  2490.    *           <versionRange minVersion="1.5" maxVersion="1.5.*"/>
  2491.    *           <versionRange minVersion="1.7" maxVersion="1.7.*"/>
  2492.    *         </targetApplication>
  2493.    *         <targetApplication id="toolkit@mozilla.org">
  2494.    *           <versionRange minVersion="1.8" maxVersion="1.8.*"/>
  2495.    *         </targetApplication>
  2496.    *       </versionRange>
  2497.    *       <versionRange minVersion="3.0" maxVersion="3.0.*">
  2498.    *         <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}">
  2499.    *           <versionRange minVersion="1.5" maxVersion="1.5.*"/>
  2500.    *         </targetApplication>
  2501.    *         <targetApplication id="toolkit@mozilla.org">
  2502.    *           <versionRange minVersion="1.8" maxVersion="1.8.*"/>
  2503.    *         </targetApplication>
  2504.    *       </versionRange>
  2505.    *     </emItem>
  2506.    *     <emItem id="item_2@domain">
  2507.    *       <versionRange minVersion="3.1" maxVersion="4.*"/>
  2508.    *     </emItem>
  2509.    *     <emItem id="item_3@domain">
  2510.    *       <versionRange>
  2511.    *         <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}">
  2512.    *           <versionRange minVersion="1.5" maxVersion="1.5.*"/>
  2513.    *         </targetApplication>
  2514.    *       </versionRange>
  2515.    *     </emItem>
  2516.    *     <emItem id="item_4@domain">
  2517.    *       <versionRange>
  2518.    *         <targetApplication>
  2519.    *           <versionRange minVersion="1.5" maxVersion="1.5.*"/>
  2520.    *         </targetApplication>
  2521.    *       </versionRange>
  2522.    *     <emItem id="item_5@domain"/>
  2523.    *   </emItems>
  2524.    * </blocklist> 
  2525.    */
  2526.   _loadBlocklistFromFile: function(file) {
  2527.     if (getPref("getBoolPref", PREF_BLOCKLIST_ENABLED, true) == false) {
  2528.       LOG("Blocklist::_loadBlocklistFromFile: blocklist is disabled");
  2529.       return { };
  2530.     }
  2531.  
  2532.     if (!file.exists()) {
  2533.       LOG("Blocklist::_loadBlocklistFromFile: XML File does not exist");
  2534.       return { };
  2535.     }
  2536.  
  2537.     var result = { };
  2538.     var fileStream = Components.classes["@mozilla.org/network/file-input-stream;1"]
  2539.                                .createInstance(Components.interfaces.nsIFileInputStream);
  2540.     fileStream.init(file, MODE_RDONLY, PERMS_FILE, 0);
  2541.     try {
  2542.       var parser = Components.classes["@mozilla.org/xmlextras/domparser;1"]
  2543.                              .createInstance(Components.interfaces.nsIDOMParser);
  2544.       var doc = parser.parseFromStream(fileStream, "UTF-8", file.fileSize, "text/xml");
  2545.       if (doc.documentElement.namespaceURI != XMLURI_BLOCKLIST) {
  2546.         LOG("Blocklist::_loadBlocklistFromFile: aborting due to incorrect " +
  2547.             "XML Namespace.\r\nExpected: " + XMLURI_BLOCKLIST + "\r\n" +
  2548.             "Received: " + doc.documentElement.namespaceURI);
  2549.         return { };
  2550.       }
  2551.  
  2552.       const kELEMENT_NODE = Components.interfaces.nsIDOMNode.ELEMENT_NODE;
  2553.       var itemNodes = this._getItemNodes(doc.documentElement.childNodes);
  2554.       for (var i = 0; i < itemNodes.length; ++i) {
  2555.         var blocklistElement = itemNodes[i];
  2556.         if (blocklistElement.nodeType != kELEMENT_NODE ||
  2557.             blocklistElement.localName != "emItem")
  2558.           continue;
  2559.  
  2560.         blocklistElement.QueryInterface(Components.interfaces.nsIDOMElement);
  2561.         var versionNodes = blocklistElement.childNodes;
  2562.         var id = blocklistElement.getAttribute("id");
  2563.         result[id] = [];
  2564.         for (var x = 0; x < versionNodes.length; ++x) {
  2565.           var versionRangeElement = versionNodes[x];
  2566.           if (versionRangeElement.nodeType != kELEMENT_NODE ||
  2567.               versionRangeElement.localName != "versionRange")
  2568.             continue;
  2569.  
  2570.           result[id].push(new BlocklistItemData(versionRangeElement));
  2571.         }
  2572.         // if only the extension ID is specified block all versions of the
  2573.         // extension for the current application.
  2574.         if (result[id].length == 0)
  2575.           result[id].push(new BlocklistItemData(null));
  2576.       }
  2577.     }
  2578.     catch (e) {
  2579.       LOG("Blocklist::_loadBlocklistFromFile: Error constructing blocklist " + e);
  2580.       return { };
  2581.     }
  2582.     fileStream.close();
  2583.     return result;
  2584.   },
  2585.  
  2586.   _getItemNodes: function(deChildNodes) {
  2587.     const kELEMENT_NODE = Components.interfaces.nsIDOMNode.ELEMENT_NODE;
  2588.     for (var i = 0; i < deChildNodes.length; ++i) {
  2589.       var emItemsElement = deChildNodes[i];
  2590.       if (emItemsElement.nodeType == kELEMENT_NODE &&
  2591.           emItemsElement.localName == "emItems")
  2592.         return emItemsElement.childNodes;
  2593.     }
  2594.     return [ ];
  2595.   },
  2596.  
  2597.   _ensureBlocklist: function() {
  2598.     if (!this.entries)
  2599.       this.entries = this._loadBlocklistFromFile(getFile(KEY_PROFILEDIR, 
  2600.                                                          [FILE_BLOCKLIST]));
  2601.   }
  2602. };
  2603.  
  2604. /**
  2605.  * Helper for constructing a blocklist.
  2606.  */
  2607. function BlocklistItemData(versionRangeElement) {
  2608.   var versionRange = this.getBlocklistVersionRange(versionRangeElement);
  2609.   this.minVersion = versionRange.minVersion;
  2610.   this.maxVersion = versionRange.maxVersion;
  2611.   this.targetApps = { };
  2612.   var found = false;
  2613.  
  2614.   if (versionRangeElement) {
  2615.     for (var i = 0; i < versionRangeElement.childNodes.length; ++i) {
  2616.       var targetAppElement = versionRangeElement.childNodes[i];
  2617.       if (targetAppElement.nodeType != Components.interfaces.nsIDOMNode.ELEMENT_NODE ||
  2618.           targetAppElement.localName != "targetApplication")
  2619.         continue;
  2620.       found = true;
  2621.       // default to the current application if id is not provided.
  2622.       var appID = targetAppElement.hasAttribute("id") ? targetAppElement.getAttribute("id") : gApp.ID;
  2623.       this.targetApps[appID] = this.getBlocklistAppVersions(targetAppElement);
  2624.     }
  2625.   }
  2626.   // Default to all versions of the extension and the current application when
  2627.   // versionRange is not defined.
  2628.   if (!found)
  2629.     this.targetApps[gApp.ID] = this.getBlocklistAppVersions(null);
  2630. }
  2631.  
  2632. BlocklistItemData.prototype = {
  2633. /**
  2634.  * Retrieves a version range (e.g. minVersion and maxVersion) for a
  2635.  * blocklist item's targetApplication element.
  2636.  * @param   targetAppElement
  2637.  *          A targetApplication blocklist element.
  2638.  * @returns An array of JS objects with the following properties:
  2639.  *          "minVersion"  The minimum version in a version range (default = 0).
  2640.  *          "maxVersion"  The maximum version in a version range (default = *).
  2641.  */
  2642.   getBlocklistAppVersions: function(targetAppElement) {
  2643.     var appVersions = [ ];
  2644.     var found = false;
  2645.  
  2646.     if (targetAppElement) {
  2647.       for (var i = 0; i < targetAppElement.childNodes.length; ++i) {
  2648.         var versionRangeElement = targetAppElement.childNodes[i];
  2649.         if (versionRangeElement.nodeType != Components.interfaces.nsIDOMNode.ELEMENT_NODE ||
  2650.             versionRangeElement.localName != "versionRange")
  2651.           continue;
  2652.         found = true;
  2653.         appVersions.push(this.getBlocklistVersionRange(versionRangeElement));
  2654.       }
  2655.     }
  2656.     // return minVersion = 0 and maxVersion = * if not available
  2657.     if (!found)
  2658.       return [ this.getBlocklistVersionRange(null) ];
  2659.     return appVersions;
  2660.   },
  2661.  
  2662. /**
  2663.  * Retrieves a version range (e.g. minVersion and maxVersion) for a blocklist
  2664.  * versionRange element.
  2665.  * @param   versionRangeElement
  2666.  *          The versionRange blocklist element.
  2667.  * @returns A JS object with the following properties:
  2668.  *          "minVersion"  The minimum version in a version range (default = 0).
  2669.  *          "maxVersion"  The maximum version in a version range (default = *).
  2670.  */
  2671.   getBlocklistVersionRange: function(versionRangeElement) {
  2672.     var minVersion = "0";
  2673.     var maxVersion = "*";
  2674.     if (!versionRangeElement)
  2675.       return { minVersion: minVersion, maxVersion: maxVersion };
  2676.  
  2677.     if (versionRangeElement.hasAttribute("minVersion"))
  2678.       minVersion = versionRangeElement.getAttribute("minVersion");
  2679.     if (versionRangeElement.hasAttribute("maxVersion"))
  2680.       maxVersion = versionRangeElement.getAttribute("maxVersion");
  2681.  
  2682.     return { minVersion: minVersion, maxVersion: maxVersion };
  2683.   }
  2684. };
  2685.  
  2686. /**
  2687.  * Installs, manages and tracks compatibility for Extensions and Themes
  2688.  * @constructor
  2689.  */
  2690. function ExtensionManager() {
  2691.   gApp = Components.classes["@mozilla.org/xre/app-info;1"]
  2692.                    .getService(Components.interfaces.nsIXULAppInfo)
  2693.                    .QueryInterface(Components.interfaces.nsIXULRuntime);
  2694.   gOSTarget = gApp.OS;
  2695.   try {
  2696.     gXPCOMABI = gApp.XPCOMABI;
  2697.   } catch (ex) {
  2698.     // Provide a default for gXPCOMABI. It won't be compared to an
  2699.     // item's metadata (i.e. install.rdf can't specify e.g. WINNT_unknownABI
  2700.     // as targetPlatform), but it will be displayed in error messages and
  2701.     // transmitted to update URLs.
  2702.     gXPCOMABI = UNKNOWN_XPCOM_ABI;
  2703.   }
  2704.   gPref = Components.classes["@mozilla.org/preferences-service;1"]
  2705.                     .getService(Components.interfaces.nsIPrefBranch2);
  2706.  
  2707.   gOS = Components.classes["@mozilla.org/observer-service;1"]
  2708.                   .getService(Components.interfaces.nsIObserverService);
  2709.   gOS.addObserver(this, "xpcom-shutdown", false);
  2710.  
  2711.   gConsole = Components.classes["@mozilla.org/consoleservice;1"]
  2712.                        .getService(Components.interfaces.nsIConsoleService);  
  2713.   
  2714.   gRDF = Components.classes["@mozilla.org/rdf/rdf-service;1"]
  2715.                    .getService(Components.interfaces.nsIRDFService);
  2716.   gInstallManifestRoot = gRDF.GetResource(RDFURI_INSTALL_MANIFEST_ROOT);
  2717.   
  2718.   // Register Global Install Location
  2719.   var appGlobalExtensions = getDirNoCreate(KEY_APPDIR, [DIR_EXTENSIONS]);
  2720.   var priority = nsIInstallLocation.PRIORITY_APP_SYSTEM_GLOBAL;
  2721.   var globalLocation = new DirectoryInstallLocation(KEY_APP_GLOBAL, 
  2722.                                                     appGlobalExtensions, true,
  2723.                                                     priority);
  2724.   InstallLocations.put(globalLocation);
  2725.  
  2726.   // Register App-Profile Install Location
  2727.   var appProfileExtensions = getDirNoCreate(KEY_PROFILEDS, [DIR_EXTENSIONS]);
  2728.   var priority = nsIInstallLocation.PRIORITY_APP_PROFILE;
  2729.   var profileLocation = new DirectoryInstallLocation(KEY_APP_PROFILE, 
  2730.                                                      appProfileExtensions, false,
  2731.                                                      priority);
  2732.   InstallLocations.put(profileLocation);
  2733.  
  2734. //@line 2665 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/extensions/src/nsExtensionManager.js.in"
  2735.   // Register HKEY_LOCAL_MACHINE Install Location
  2736.   InstallLocations.put(
  2737.       new WinRegInstallLocation("winreg-app-global",
  2738.                                 nsIWindowsRegKey.ROOT_KEY_LOCAL_MACHINE,
  2739.                                 true,
  2740.                                 nsIInstallLocation.PRIORITY_APP_SYSTEM_GLOBAL + 10));
  2741.  
  2742.   // Register HKEY_CURRENT_USER Install Location
  2743.   InstallLocations.put(
  2744.       new WinRegInstallLocation("winreg-app-user",
  2745.                                 nsIWindowsRegKey.ROOT_KEY_CURRENT_USER,
  2746.                                 false,
  2747.                                 nsIInstallLocation.PRIORITY_APP_SYSTEM_USER + 10));
  2748. //@line 2679 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/extensions/src/nsExtensionManager.js.in"
  2749.  
  2750.   // Register Additional Install Locations
  2751.   var categoryManager = Components.classes["@mozilla.org/categorymanager;1"]
  2752.                                   .getService(Components.interfaces.nsICategoryManager);
  2753.   var locations = categoryManager.enumerateCategory(CATEGORY_INSTALL_LOCATIONS);
  2754.   while (locations.hasMoreElements()) {
  2755.     var entry = locations.getNext().QueryInterface(Components.interfaces.nsISupportsCString).data;
  2756.     var contractID = categoryManager.getCategoryEntry(CATEGORY_INSTALL_LOCATIONS, entry);
  2757.     var location = Components.classes[contractID].getService(nsIInstallLocation);
  2758.     InstallLocations.put(location);
  2759.   }
  2760. }
  2761.  
  2762. ExtensionManager.prototype = {
  2763.   /**
  2764.    * See nsIObserver.idl
  2765.    */
  2766.   observe: function(subject, topic, data) {
  2767.     switch (topic) {
  2768.     case "app-startup":
  2769.       gOS.addObserver(this, "profile-after-change", false);
  2770.       break;
  2771.     case "profile-after-change":
  2772.       this._profileSelected();
  2773.       break;
  2774.     case "quit-application-requested":
  2775.       this._confirmCancelDownloadsOnQuit(subject);
  2776.       break;
  2777.     case "offline-requested":
  2778.       this._confirmCancelDownloadsOnOffline(subject);
  2779.       break;
  2780.     case "xpcom-shutdown":
  2781.       this._shutdown();
  2782.       break;
  2783.     case "nsPref:changed":
  2784.       if (data == PREF_EM_LOGGING_ENABLED)
  2785.         this._loggingToggled();
  2786.       else if (data == PREF_EM_CHECK_COMPATIBILITY)
  2787.         this._checkCompatToggled();
  2788.       else if ((data == PREF_MATCH_OS_LOCALE) || (data == PREF_SELECTED_LOCALE))
  2789.         this._updateLocale();
  2790.       break;
  2791.     }
  2792.   },
  2793.   
  2794.   /**
  2795.    * Refresh the logging enabled global from preferences when the user changes
  2796.    * the preference settting.
  2797.    */
  2798.   _loggingToggled: function() {
  2799.     gLoggingEnabled = getPref("getBoolPref", PREF_EM_LOGGING_ENABLED, false);
  2800.   },
  2801.  
  2802.   /**
  2803.    * Retrieves the current locale
  2804.    */
  2805.   _updateLocale: function() {
  2806.     try {
  2807.       if (gPref.getBoolPref(PREF_MATCH_OS_LOCALE)) {
  2808.         var localeSvc = Components.classes["@mozilla.org/intl/nslocaleservice;1"]
  2809.                                   .getService(Components.interfaces.nsILocaleService);
  2810.         gLocale = localeSvc.getLocaleComponentForUserAgent();
  2811.         return;
  2812.       }
  2813.     }
  2814.     catch (ex) {
  2815.     }
  2816.     gLocale = gPref.getCharPref(PREF_SELECTED_LOCALE);
  2817.   },
  2818.   
  2819.   /**
  2820.    * Enables or disables extensions that are incompatible depending upon the pref
  2821.    * setting for compatibility checking.
  2822.    */
  2823.   _checkCompatToggled: function() {
  2824.     gCheckCompatibility = getPref("getBoolPref", PREF_EM_CHECK_COMPATIBILITY, true);
  2825.     var ds = this.datasource;
  2826.  
  2827.     // Enumerate all items
  2828.     var ctr = getContainer(ds, ds._itemRoot);
  2829.     var elements = ctr.GetElements();
  2830.     while (elements.hasMoreElements()) {
  2831.       var itemResource = elements.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  2832.  
  2833.       // App disable or enable items as necessary
  2834.       // _appEnableItem and _appDisableItem will do nothing if the item is already
  2835.       // in the right state.
  2836.       id = stripPrefix(itemResource.Value, PREFIX_ITEM_URI);
  2837.       if (this._isUsableItem(id))
  2838.         this._appEnableItem(id);
  2839.       else
  2840.         this._appDisableItem(id);
  2841.     }
  2842.   },
  2843.  
  2844.   /**
  2845.    * Initialize the system after a profile has been selected.
  2846.    */  
  2847.   _profileSelected: function() {
  2848.     // Tell the Chrome Registry which Skin to select
  2849.     try {
  2850.       if (gPref.getBoolPref(PREF_DSS_SWITCHPENDING)) {
  2851.         var toSelect = gPref.getCharPref(PREF_DSS_SKIN_TO_SELECT);
  2852.         gPref.setCharPref(PREF_GENERAL_SKINS_SELECTEDSKIN, toSelect);
  2853.         gPref.clearUserPref(PREF_DSS_SWITCHPENDING);
  2854.         gPref.clearUserPref(PREF_DSS_SKIN_TO_SELECT);
  2855.       }
  2856.     }
  2857.     catch (e) {
  2858.     }
  2859.     gLoggingEnabled = getPref("getBoolPref", PREF_EM_LOGGING_ENABLED, false);
  2860.     gCheckCompatibility = getPref("getBoolPref", PREF_EM_CHECK_COMPATIBILITY, true);
  2861.     gPref.addObserver("extensions.", this, false);
  2862.     gPref.addObserver(PREF_MATCH_OS_LOCALE, this, false);
  2863.     gPref.addObserver(PREF_SELECTED_LOCALE, this, false);
  2864.     this._updateLocale();
  2865.   },
  2866.  
  2867.   /**
  2868.    * Notify user that there are new addons updates
  2869.    */
  2870.   _showUpdatesWindow: function() {
  2871.     if (!getPref("getBoolPref", PREF_UPDATE_NOTIFYUSER, false))
  2872.       return;
  2873.  
  2874.     const EMURL = "chrome://mozapps/content/extensions/extensions.xul";
  2875.     const EMFEATURES = "chrome,centerscreen,extra-chrome,dialog,resizable,modal";
  2876.  
  2877.     var ww = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
  2878.                        .getService(Components.interfaces.nsIWindowWatcher);
  2879.     var param = Components.classes["@mozilla.org/supports-array;1"]
  2880.                           .createInstance(Components.interfaces.nsISupportsArray);
  2881.     var arg = Components.classes["@mozilla.org/supports-string;1"]
  2882.                         .createInstance(Components.interfaces.nsISupportsString);
  2883.     arg.data = "updates-only";
  2884.     param.AppendElement(arg);
  2885.     ww.openWindow(null, EMURL, null, EMFEATURES, param);
  2886.   },
  2887.  
  2888.   /**
  2889.    * Clean up on application shutdown to avoid leaks.
  2890.    */
  2891.   _shutdown: function() {
  2892.     gOS.removeObserver(this, "xpcom-shutdown");
  2893.     gOS.removeObserver(this, "profile-after-change");
  2894.  
  2895.     // Release strongly held services.
  2896.     gOS = null;
  2897.     if (this._ptr && gRDF) {
  2898.       gRDF.UnregisterDataSource(this._ptr);
  2899.       this._ptr = null;
  2900.     }
  2901.     gRDF = null;
  2902.     if (gPref) {
  2903.       gPref.removeObserver("extensions.", this);
  2904.       gPref.removeObserver(PREF_MATCH_OS_LOCALE, this);
  2905.       gPref.removeObserver(PREF_SELECTED_LOCALE, this);
  2906.     }
  2907.     gPref = null;
  2908.     gConsole = null;
  2909.     gVersionChecker = null;
  2910.     gInstallManifestRoot = null;
  2911.     gApp = null;
  2912.   },
  2913.   
  2914.   /**
  2915.    * Check for presence of critical Extension system files. If any is missing, 
  2916.    * delete the others and signal that the system needs to rebuild them all
  2917.    * from scratch.
  2918.    * @returns true if any critical file is missing and the system needs to
  2919.    *          be rebuilt, false otherwise.
  2920.    */
  2921.   _ensureDatasetIntegrity: function () {
  2922.     var extensionsDS = getFile(KEY_PROFILEDIR, [FILE_EXTENSIONS]);
  2923.     var extensionsINI = getFile(KEY_PROFILEDIR, [FILE_EXTENSION_MANIFEST]);
  2924.     var extensionsCache = getFile(KEY_PROFILEDIR, [FILE_EXTENSIONS_STARTUP_CACHE]);
  2925.     
  2926.     var dsExists = extensionsDS.exists();
  2927.     var iniExists = extensionsINI.exists();
  2928.     var cacheExists = extensionsCache.exists();
  2929.  
  2930.     if (dsExists && iniExists && cacheExists)
  2931.       return false;
  2932.  
  2933.     // If any of the files are missing, remove the .ini file
  2934.     if (iniExists)
  2935.       extensionsINI.remove(false);
  2936.  
  2937.     // If the extensions datasource is missing remove the .cache file if it exists
  2938.     if (!dsExists && cacheExists)
  2939.       extensionsCache.remove(false);
  2940.  
  2941.     return true;
  2942.   },
  2943.   
  2944.   /**
  2945.    * See nsIExtensionManager.idl
  2946.    */
  2947.   start: function(commandLine) {
  2948.     var isDirty = false;
  2949.     var forceAutoReg = false;
  2950.     
  2951.     this._showUpdatesWindow();
  2952.     
  2953.     // Somehow the component list went away, and for that reason the new one
  2954.     // generated by this function is going to result in a different compreg.
  2955.     // We must force a restart.
  2956.     var componentList = getFile(KEY_PROFILEDIR, [FILE_EXTENSION_MANIFEST]);
  2957.     if (!componentList.exists())
  2958.       forceAutoReg = true;
  2959.     
  2960.     // Check for missing manifests - e.g. missing extensions.ini, missing
  2961.     // extensions.cache, extensions.rdf etc. If any of these files 
  2962.     // is missing then we are in some kind of weird or initial state and need
  2963.     // to force a regeneration.
  2964.     if (this._ensureDatasetIntegrity())
  2965.       isDirty = true;
  2966.  
  2967.     // Configure any items that are being installed, uninstalled or upgraded 
  2968.     // by being added, removed or modified by another process. We must do this
  2969.     // on every startup since there is no way we can tell if this has happened
  2970.     // or not!
  2971.     if (this._checkForFileChanges())
  2972.       isDirty = true;
  2973.  
  2974.     if (PendingOperations.size != 0)
  2975.       isDirty = true;
  2976.  
  2977.     // Extension Changes
  2978.     if (isDirty) {
  2979.       var needsRestart = this._finishOperations();
  2980.  
  2981.       if (forceAutoReg) {
  2982.         this._extensionListChanged = true;
  2983.         needsRestart = true;
  2984.       }
  2985.       return needsRestart;
  2986.     }
  2987.       
  2988.     this._startTimers();
  2989.  
  2990.     return false;
  2991.   },
  2992.   
  2993.   /**
  2994.    * Begins all background update check timers
  2995.    */
  2996.   _startTimers: function() {
  2997.     // Register a background update check timer
  2998.     var tm = 
  2999.         Components.classes["@mozilla.org/updates/timer-manager;1"]
  3000.                   .getService(Components.interfaces.nsIUpdateTimerManager);
  3001.     var interval = getPref("getIntPref", PREF_EM_UPDATE_INTERVAL, 86400); 
  3002.     tm.registerTimer("addon-background-update-timer", this, interval);
  3003.  
  3004.     interval = getPref("getIntPref", PREF_BLOCKLIST_INTERVAL, 86400); 
  3005.     tm.registerTimer("blocklist-background-update-timer", Blocklist, interval);
  3006.   },
  3007.   
  3008.   /**
  3009.    * Notified when a timer fires
  3010.    * @param   timer
  3011.    *          The timer that fired
  3012.    */
  3013.   notify: function(timer) {
  3014.     if (!getPref("getBoolPref", PREF_EM_UPDATE_ENABLED, true))
  3015.       return;
  3016.  
  3017.     var items = this.getItemList(nsIUpdateItem.TYPE_ADDON, { });
  3018.  
  3019.     var updater = new ExtensionItemUpdater(gApp.ID, gApp.version, this);
  3020.     updater._background = true;
  3021.     updater.checkForUpdates(items, items.length,
  3022.                             nsIExtensionManager.UPDATE_CHECK_NEWVERSION, null);
  3023.   },
  3024.   
  3025.   /**
  3026.    * See nsIExtensionManager.idl
  3027.    */
  3028.   handleCommandLineArgs: function(commandLine) {
  3029.     try {
  3030.       var globalExtension = commandLine.handleFlagWithParam("install-global-extension", false);
  3031.       if (globalExtension) {
  3032.         var file = commandLine.resolveFile(globalExtension);
  3033.         this._installGlobalItem(file);
  3034.       }
  3035.       var globalTheme = commandLine.handleFlagWithParam("install-global-theme", false);
  3036.       if (globalTheme) {
  3037.         file = commandLine.resolveFile(globalTheme);
  3038.         this._installGlobalItem(file);
  3039.       }
  3040.     }
  3041.     catch (e) { 
  3042.       LOG("ExtensionManager:handleCommandLineArgs - failure, catching exception - lineno: " +
  3043.           e.lineNumber + " - file: " + e.fileName + " - " + e);
  3044.     }
  3045.     commandLine.preventDefault = true;
  3046.   },
  3047.  
  3048.   /**
  3049.    * Installs an XPI/JAR file into the KEY_APP_GLOBAL install location.
  3050.    * @param   file
  3051.    *          The XPI/JAR file to extract
  3052.    */
  3053.   _installGlobalItem: function(file) {
  3054.     if (!file || !file.exists())
  3055.       throw new Error("Unable to find the file specified on the command line!");
  3056.     var installManifestFile = extractRDFFileToTempDir(file, FILE_INSTALL_MANIFEST, true);
  3057.     if (!installManifestFile.exists())
  3058.       throw new Error("The package is missing an install manifest!");
  3059.     var installManifest = getInstallManifest(installManifestFile);
  3060.     installManifestFile.remove(false);
  3061.     var installData = this._getInstallData(installManifest);
  3062.     var installer = new Installer(installManifest, installData.id,
  3063.                                   InstallLocations.get(KEY_APP_GLOBAL),
  3064.                                   installData.type);
  3065.     installer._installExtensionFiles(file);
  3066.     if (installData.type == nsIUpdateItem.TYPE_THEME)
  3067.       installer.upgradeThemeChrome();
  3068.     else
  3069.       installer.upgradeExtensionChrome();
  3070.   },
  3071.  
  3072.   /**
  3073.    * Check to see if a file is a XPI/JAR file that the user dropped into this
  3074.    * Install Location. (i.e. a XPI that is not a staged XPI from an install 
  3075.    * transaction that is currently in operation). 
  3076.    * @param   file
  3077.    *          The XPI/JAR file to configure
  3078.    * @param   location
  3079.    *          The Install Location where this file was found.
  3080.    * @returns A nsIUpdateItem representing the dropped XPI if this file was a 
  3081.    *          XPI/JAR that needs installation, null otherwise.
  3082.    */
  3083.   _getItemForDroppedFile: function(file, location) {
  3084.     if (fileIsItemPackage(file)) {
  3085.       // We know nothing about this item, it is not something we've
  3086.       // staged in preparation for finalization, so assume it's something
  3087.       // the user dropped in.
  3088.       LOG("A Item Package appeared at: " + file.path + " that we know " + 
  3089.           "nothing about, assuming it was dropped in by the user and " + 
  3090.           "configuring for installation now. Location Key: " + location.name);
  3091.  
  3092.       var installManifestFile = extractRDFFileToTempDir(file, FILE_INSTALL_MANIFEST, true);
  3093.       if (!installManifestFile.exists())
  3094.         return null;
  3095.       var installManifest = getInstallManifest(installManifestFile);
  3096.       installManifestFile.remove(false);
  3097.       var ds = this.datasource;
  3098.       var installData = this._getInstallData(installManifest);
  3099.       var targetAppInfo = ds.getTargetApplicationInfo(installData.id, installManifest);
  3100.       return makeItem(installData.id,
  3101.                       installData.version,
  3102.                       location.name,
  3103.                       targetAppInfo ? targetAppInfo.minVersion : "",
  3104.                       targetAppInfo ? targetAppInfo.maxVersion : "",
  3105.                       getManifestProperty(installManifest, "name"),
  3106.                       "", /* XPI Update URL */
  3107.                       "", /* XPI Update Hash */
  3108.                       getManifestProperty(installManifest, "iconURL"),
  3109.                       getManifestProperty(installManifest, "updateURL"),
  3110.                       installData.type);
  3111.     }
  3112.     return null;
  3113.   },
  3114.   
  3115.   /**
  3116.    * Check for changes to items that were made independently of the Extension 
  3117.    * Manager, e.g. items were added or removed from a Install Location or items
  3118.    * in an Install Location changed. 
  3119.    */
  3120.   _checkForFileChanges: function() {
  3121.     var em = this;
  3122.     /** 
  3123.      * Configure an item that was installed or upgraded by another process
  3124.      * so that |_finishOperations| can properly complete processing and 
  3125.      * registration. 
  3126.      * As this is the only point at which we can reliably know the Install
  3127.      * Location of this item, we use this as an opportunity to:
  3128.      * 1. Check that this item is compatible with this Firefox version.
  3129.      * 2. If it is, configure the item by using the supplied callback.
  3130.      *    We do not do any special handling in the case that the item is
  3131.      *    not compatible with this version other than to simply not register
  3132.      *    it and log that fact - there is no "phone home" check for updates. 
  3133.      *    It may or may not make sense to do this, but for now we'll just
  3134.      *    not register.
  3135.      * @param   id
  3136.      *          The GUID of the item to validate and configure.
  3137.      * @param   location
  3138.      *          The Install Location where this item is installed.
  3139.      * @param   callback
  3140.      *          The callback that configures the item for installation upon
  3141.      *          successful validation.
  3142.      */      
  3143.     function installItem(id, location, callback) {
  3144.       // As this is the only pint at which we reliably know the installation
  3145.       var installRDF = location.getItemFile(id, FILE_INSTALL_MANIFEST);
  3146.       if (installRDF.exists()) {
  3147.         LOG("Item Installed/Upgraded at Install Location: " + location.name + 
  3148.             " Item ID: " + id + ", attempting to register...");
  3149.         var installManifest = getInstallManifest(installRDF);
  3150.         var installData = em._getInstallData(installManifest);
  3151.         if (installData.error == INSTALLERROR_SUCCESS) {
  3152.           LOG("... success, item is compatible");
  3153.           callback(installManifest, installData.id, location, installData.type);
  3154.         }
  3155.         else if (installData.error == INSTALLERROR_INCOMPATIBLE_VERSION) {
  3156.           LOG("... success, item installed but is not compatible");
  3157.           callback(installManifest, installData.id, location, installData.type);
  3158.           em._appDisableItem(id);
  3159.         }
  3160.         else if (installData.error == INSTALLERROR_BLOCKLISTED) {
  3161.           LOG("... success, item installed but is blocklisted");
  3162.           callback(installManifest, installData.id, location, installData.type);
  3163.           em._appDisableItem(id);
  3164.         }
  3165.         else {
  3166.           /**
  3167.            * Turns an error code into a message for logging
  3168.            * @param   error
  3169.            *          an Install Error code
  3170.            * @returns A string message to be logged.
  3171.            */
  3172.           function translateErrorMessage(error) {
  3173.             switch (error) {
  3174.             case INSTALLERROR_INVALID_GUID:
  3175.               return "Invalid GUID";
  3176.             case INSTALLERROR_INVALID_VERSION:
  3177.               return "Invalid Version";
  3178.             case INSTALLERROR_INCOMPATIBLE_VERSION:
  3179.               return "Incompatible Version";
  3180.             case INSTALLERROR_INCOMPATIBLE_PLATFORM:
  3181.               return "Incompatible Platform";
  3182.             }
  3183.           }
  3184.           LOG("... failure, item is not compatible, error: " + 
  3185.               translateErrorMessage(installData.error));
  3186.  
  3187.           // Add the item to the Startup Cache anyway, so we don't re-detect it
  3188.           // every time the app starts.
  3189.           StartupCache.put(location, id, OP_NONE, true);
  3190.         }
  3191.       }      
  3192.     }
  3193.   
  3194.     /**
  3195.      * Determines if an item can be used based on whether or not the install
  3196.      * location of the "item" has an equal or higher priority than the install
  3197.      * location where another version may live.
  3198.      * @param   id
  3199.      *          The GUID of the item being installed.
  3200.      * @param   location
  3201.      *          The location where an item is to be installed.
  3202.      * @returns true if the item can be installed at that location, false 
  3203.      *          otherwise.
  3204.      */
  3205.     function canUse(id, location) {
  3206.       for (var locationKey in StartupCache.entries) {
  3207.         if (locationKey != location.name && 
  3208.             id in StartupCache.entries[locationKey]) {
  3209.           if (StartupCache.entries[locationKey][id]) {
  3210.             var oldInstallLocation = InstallLocations.get(locationKey);
  3211.             if (oldInstallLocation.priority <= location.priority)
  3212.               return false;
  3213.           }
  3214.         }
  3215.       }
  3216.       return true;
  3217.     }
  3218.     
  3219.     /** 
  3220.       * Gets a Dialog Param Block loaded with a set of strings to initialize the
  3221.       * XPInstall Confirmation Dialog.
  3222.       * @param   strings
  3223.       *          An array of strings
  3224.       * @returns A nsIDialogParamBlock loaded with the strings and dialog state.
  3225.       */
  3226.     function getParamBlock(strings) {
  3227.       var dpb = Components.classes["@mozilla.org/embedcomp/dialogparam;1"]
  3228.                           .createInstance(Components.interfaces.nsIDialogParamBlock);
  3229.       // OK and Cancel Buttons
  3230.       dpb.SetInt(0, 2);
  3231.       // Number of Strings
  3232.       dpb.SetInt(1, strings.length);
  3233.       dpb.SetNumberStrings(strings.length);
  3234.       // Add Strings
  3235.       for (var i = 0; i < strings.length; ++i)
  3236.         dpb.SetString(i, strings[i]);
  3237.       
  3238.       var supportsString = Components.classes["@mozilla.org/supports-string;1"]
  3239.                                      .createInstance(Components.interfaces.nsISupportsString);
  3240.       var bundle = BundleManager.getBundle(URI_EXTENSIONS_PROPERTIES);
  3241.       supportsString.data = bundle.GetStringFromName("droppedInWarning");
  3242.       var objs = Components.classes["@mozilla.org/array;1"]
  3243.                            .createInstance(Components.interfaces.nsIMutableArray);
  3244.       objs.appendElement(supportsString, false);
  3245.       dpb.objects = objs;
  3246.       return dpb;        
  3247.     }
  3248.  
  3249.     /**
  3250.      * Installs a set of files which were dropped into an install location by 
  3251.      * the user, only after user confirmation.
  3252.      * @param   droppedInFiles
  3253.      *          An array of JS objects with the following properties:
  3254.      *          "file"      The nsILocalFile where the XPI lives
  3255.      *          "location"  The Install Location where the XPI was found. 
  3256.      * @param   xpinstallStrings
  3257.      *          An array of strings used to initialize the XPInstall Confirm 
  3258.      *          dialog.
  3259.      */ 
  3260.     function installDroppedInFiles(droppedInFiles, xpinstallStrings) {
  3261.       if (droppedInFiles.length == 0) 
  3262.         return;
  3263.         
  3264.       var dpb = getParamBlock(xpinstallStrings);
  3265.       var ifptr = Components.classes["@mozilla.org/supports-interface-pointer;1"]
  3266.                             .createInstance(Components.interfaces.nsISupportsInterfacePointer);
  3267.       ifptr.data = dpb;
  3268.       ifptr.dataIID = Components.interfaces.nsIDialogParamBlock;
  3269.       var ww = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
  3270.                           .getService(Components.interfaces.nsIWindowWatcher);
  3271.       ww.openWindow(null, URI_XPINSTALL_CONFIRM_DIALOG, 
  3272.                     "", "chrome,centerscreen,modal,dialog,titlebar", ifptr);
  3273.       if (!dpb.GetInt(0)) {
  3274.         // User said OK - install items
  3275.         for (var i = 0; i < droppedInFiles.length; ++i) {
  3276.           em.installItemFromFile(droppedInFiles[i].file, 
  3277.                                  droppedInFiles[i].location.name);
  3278.           // We are responsible for cleaning up this file
  3279.           droppedInFiles[i].file.remove(false);
  3280.         }
  3281.       }
  3282.       else {
  3283.         for (i = 0; i < droppedInFiles.length; ++i) {
  3284.           // We are responsible for cleaning up this file
  3285.           droppedInFiles[i].file.remove(false);
  3286.         }
  3287.       }
  3288.     }
  3289.     
  3290.     var isDirty = false;
  3291.     var ignoreMTimeChanges = getPref("getBoolPref", PREF_EM_IGNOREMTIMECHANGES,
  3292.                                      false);
  3293.     StartupCache.read();
  3294.     
  3295.     // Array of objects with 'location' and 'id' properties to maybe install.
  3296.     var newItems = [];
  3297.  
  3298.     var droppedInFiles = [];
  3299.     var xpinstallStrings = [];
  3300.     
  3301.     // Enumerate over the install locations from low to high priority.  The
  3302.     // enumeration returned is pre-sorted.
  3303.     var installLocations = this.installLocations;
  3304.     while (installLocations.hasMoreElements()) {
  3305.       var location = installLocations.getNext().QueryInterface(nsIInstallLocation);
  3306.  
  3307.       // Hash the set of items actually held by the Install Location.  
  3308.       var actualItems = { };
  3309.       var entries = location.itemLocations;
  3310.       while (true) {
  3311.         var entry = entries.nextFile;
  3312.         if (!entry)
  3313.           break;
  3314.  
  3315.         // Is this location a valid item? It must be a directory, and contain
  3316.         // an install.rdf manifest:
  3317.         if (entry.isDirectory()) {
  3318.           var installRDF = entry.clone();
  3319.           installRDF.append(FILE_INSTALL_MANIFEST);
  3320.  
  3321.           var id = location.getIDForLocation(entry);
  3322.           if (!id || (!installRDF.exists() && 
  3323.                       !location.itemIsManagedIndependently(id)))
  3324.             continue;
  3325.  
  3326.           actualItems[id] = entry;
  3327.         }
  3328.         else {
  3329.           // Check to see if this file is a XPI/JAR dropped into this dir
  3330.           // by the user, installing it if necessary. We do this here rather
  3331.           // than separately in |_finishOperations| because I don't want to
  3332.           // walk these lists multiple times on every startup.
  3333.           var item = this._getItemForDroppedFile(entry, location);
  3334.           if (item) {
  3335.             droppedInFiles.push({ file: entry, location: location });
  3336.             var prettyName = "";
  3337.             try {
  3338.               var zipReader = getZipReaderForFile(entry);
  3339.               var principal = { };
  3340.               var certPrincipal = zipReader.getCertificatePrincipal(null, principal);
  3341.               // XXXbz This string could be empty.  This needs better
  3342.               // UI to present principal.value.certificate's subject.
  3343.               prettyName = principal.value.prettyName;
  3344.             }
  3345.             catch (e) { }
  3346.             if (zipReader)
  3347.               zipReader.close();
  3348.             xpinstallStrings = xpinstallStrings.concat([item.name, 
  3349.                                                         getURLSpecFromFile(entry),
  3350.                                                         item.iconURL, 
  3351.                                                         prettyName]);
  3352.             isDirty = true;
  3353.           }
  3354.         }
  3355.       }
  3356.       
  3357.       if (location.name in StartupCache.entries) {
  3358.         // Look for items that have been uninstalled by removing their directory.
  3359.         for (var id in StartupCache.entries[location.name]) {
  3360.           if (!StartupCache.entries[location.name] ||
  3361.               !StartupCache.entries[location.name][id]) 
  3362.             continue;
  3363.  
  3364.           // Force _finishOperations to run if we have enabled or disabled items.
  3365.           // XXXdarin this should be unnecessary now that we check
  3366.           // PendingOperations.size in start()
  3367.           if (StartupCache.entries[location.name][id].op == OP_NEEDS_ENABLE ||
  3368.               StartupCache.entries[location.name][id].op == OP_NEEDS_DISABLE)
  3369.             isDirty = true;
  3370.           
  3371.           if (!(id in actualItems) && 
  3372.               StartupCache.entries[location.name][id].op != OP_NEEDS_UNINSTALL &&
  3373.               StartupCache.entries[location.name][id].op != OP_NEEDS_INSTALL &&
  3374.               StartupCache.entries[location.name][id].op != OP_NEEDS_UPGRADE) {
  3375.             // We have an entry for this id in the Extensions database, for this 
  3376.             // install location, but it no longer exists in the Install Location. 
  3377.             // We can infer from this that the item has been removed, so uninstall
  3378.             // it properly. 
  3379.             if (canUse(id, location)) {
  3380.               LOG("Item Uninstalled via file removal from: " + StartupCache.entries[location.name][id].descriptor + 
  3381.                   " Item ID: " + id + " Location Key: " + location.name + ", uninstalling item.");
  3382.               
  3383.               // Load the Extensions Datasource and force this item into the visible
  3384.               // items list if it is not already. This allows us to handle the case 
  3385.               // where there is an entry for an item in the Startup Cache but not
  3386.               // in the extensions.rdf file - in that case the item will not be in
  3387.               // the visible list and calls to |getInstallLocation| will mysteriously
  3388.               // fail.
  3389.               this.datasource.updateVisibleList(id, location.name, false);
  3390.               this.uninstallItem(id);
  3391.               isDirty = true;
  3392.             }
  3393.           }
  3394.           else if (!ignoreMTimeChanges) {
  3395.             // Look for items whose mtime has changed, and as such we can assume 
  3396.             // they have been "upgraded".
  3397.             var lf = { path: StartupCache.entries[location.name][id].descriptor };
  3398.             try {
  3399.                lf = getFileFromDescriptor(StartupCache.entries[location.name][id].descriptor, location);
  3400.             }
  3401.             catch (e) { }
  3402.  
  3403.             if (lf.exists && lf.exists()) {
  3404.               var actualMTime = Math.floor(lf.lastModifiedTime / 1000);
  3405.               if (actualMTime != StartupCache.entries[location.name][id].mtime) {
  3406.                 LOG("Item Location path changed: " + lf.path + " Item ID: " + 
  3407.                     id + " Location Key: " + location.name + ", attempting to upgrade item...");
  3408.                 if (canUse(id, location)) {
  3409.                   installItem(id, location, 
  3410.                               function(installManifest, id, location, type) {
  3411.                                 em._upgradeItem(installManifest, id, location, 
  3412.                                                 type);
  3413.                               });
  3414.                   isDirty = true;
  3415.                 }
  3416.               }
  3417.             }
  3418.             else {
  3419.               isDirty = true;
  3420.               LOG("Install Location returned a missing or malformed item path! " + 
  3421.                   "Item Path: " + lf.path + ", Location Key: " + location.name + 
  3422.                   " Item ID: " + id);
  3423.               if (canUse(id, location)) {
  3424.                 // Load the Extensions Datasource and force this item into the visible
  3425.                 // items list if it is not already. This allows us to handle the case 
  3426.                 // where there is an entry for an item in the Startup Cache but not
  3427.                 // in the extensions.rdf file - in that case the item will not be in
  3428.                 // the visible list and calls to |getInstallLocation| will mysteriously
  3429.                 // fail.
  3430.                 this.datasource.updateVisibleList(id, location.name, false);
  3431.                 this.uninstallItem(id);
  3432.               }
  3433.             }
  3434.           }
  3435.         }
  3436.       }
  3437.  
  3438.       // Look for items that have been installed by appearing in the location.
  3439.       for (var id in actualItems) {
  3440.         if (!(location.name in StartupCache.entries) || 
  3441.             !(id in StartupCache.entries[location.name]) ||
  3442.             !StartupCache.entries[location.name][id]) {
  3443.           // Remember that we've seen this item
  3444.           StartupCache.put(location, id, OP_NONE, true);
  3445.           // Push it on the stack of items to maybe install later
  3446.           newItems.push({location: location, id: id});
  3447.         }
  3448.       }
  3449.     }
  3450.  
  3451.     // Process any newly discovered items.  We do this here instead of in the
  3452.     // previous loop so that we can be sure that we have a fully populated
  3453.     // StartupCache.
  3454.     for (var i = 0; i < newItems.length; ++i) {
  3455.       var id = newItems[i].id;
  3456.       var location = newItems[i].location;
  3457.       if (canUse(id, location)) {
  3458.         LOG("Item Installed via directory addition to Install Location: " + 
  3459.             location.name + " Item ID: " + id + ", attempting to register...");
  3460.         installItem(id, location, 
  3461.                     function(installManifest, id, location, type) { 
  3462.                       em._configureForthcomingItem(installManifest, id, location, 
  3463.                                                    type);
  3464.                     });
  3465.         // Disable add-ons on install when the InstallDisabled file exists.
  3466.         // This is so Talkback will be disabled on a subset of installs.
  3467.         var installDisabled = location.getItemFile(id, "InstallDisabled");
  3468.         if (installDisabled.exists())
  3469.           em.disableItem(id);
  3470.         isDirty = true;
  3471.       }
  3472.     }
  3473.  
  3474.     // Ask the user if they want to install the dropped items, for security
  3475.     // purposes.
  3476.     installDroppedInFiles(droppedInFiles, xpinstallStrings);
  3477.     
  3478.     return isDirty;
  3479.   },
  3480.   
  3481.   /**
  3482.    * Upgrades contents.rdf files to chrome.manifest files for any existing
  3483.    * Extensions and Themes.
  3484.    * @returns true if actions were performed that require a restart, false 
  3485.    *          otherwise.
  3486.    */
  3487.   _upgradeChrome: function() {
  3488.     if (inSafeMode())
  3489.       return false;
  3490.  
  3491.     var checkForNewChrome = false;
  3492.     var ds = this.datasource;
  3493.     // If we have extensions that were installed before the new flat chrome
  3494.     // manifests, and are still valid, we need to manually create the flat
  3495.     // manifest files.
  3496.     var extensions = this._getActiveItems(nsIUpdateItem.TYPE_EXTENSION +
  3497.                                           nsIUpdateItem.TYPE_LOCALE +
  3498.                                           nsIUpdateItem.TYPE_PLUGIN);
  3499.     for (var i = 0; i < extensions.length; ++i) {
  3500.       var e = extensions[i];
  3501.       var itemLocation = e.location.getItemLocation(e.id);
  3502.       var manifest = itemLocation.clone();
  3503.       manifest.append(FILE_CHROME_MANIFEST);
  3504.       if (!manifest.exists()) {
  3505.         var installRDF = itemLocation.clone();
  3506.         installRDF.append(FILE_INSTALL_MANIFEST);
  3507.         var installLocation = this.getInstallLocation(e.id);
  3508.         if (installLocation && installRDF.exists()) {
  3509.           var itemLocation = installLocation.getItemLocation(e.id);
  3510.           if (itemLocation.exists() && itemLocation.isDirectory()) {
  3511.             var installer = new Installer(ds, e.id, installLocation, 
  3512.                                           nsIUpdateItem.TYPE_EXTENSION);
  3513.             installer.upgradeExtensionChrome();
  3514.           }
  3515.         }
  3516.         else {
  3517.           ds.removeItemMetadata(e.id);
  3518.           ds.removeItemFromContainer(e.id);
  3519.         }
  3520.  
  3521.         checkForNewChrome = true;
  3522.       }
  3523.     }
  3524.  
  3525.     var themes = this._getActiveItems(nsIUpdateItem.TYPE_THEME);
  3526.     // If we have themes that were installed before the new flat chrome
  3527.     // manifests, and are still valid, we need to manually create the flat
  3528.     // manifest files.
  3529.     for (i = 0; i < themes.length; ++i) {
  3530.       var item = themes[i];
  3531.       var itemLocation = item.location.getItemLocation(item.id);
  3532.       var manifest = itemLocation.clone();
  3533.       manifest.append(FILE_CHROME_MANIFEST);
  3534.       if (manifest.exists() ||
  3535.           item.id == stripPrefix(RDFURI_DEFAULT_THEME, PREFIX_ITEM_URI))
  3536.         continue;
  3537.  
  3538.       var entries;
  3539.       try {
  3540.         var manifestURI = getURIFromFile(manifest);
  3541.         var chromeDir = itemLocation.clone();
  3542.         chromeDir.append(DIR_CHROME);
  3543.         
  3544.         if (!chromeDir.exists() || !chromeDir.isDirectory()) {
  3545.           ds.removeItemMetadata(item.id);
  3546.           ds.removeItemFromContainer(item.id);
  3547.           continue;
  3548.         }
  3549.  
  3550.         // We're relying on the fact that there is only one JAR file
  3551.         // in the "chrome" directory. This is a hack, but it works.
  3552.         entries = chromeDir.directoryEntries.QueryInterface(nsIDirectoryEnumerator);
  3553.         var jarFile = entries.nextFile;
  3554.         if (jarFile) {
  3555.           var jarFileURI = getURIFromFile(jarFile);
  3556.           var contentsURI = newURI("jar:" + jarFileURI.spec + "!/");
  3557.  
  3558.           // Use the Chrome Registry API to install the theme there
  3559.           var cr = Components.classes["@mozilla.org/chrome/chrome-registry;1"]
  3560.                             .getService(Components.interfaces.nsIToolkitChromeRegistry);
  3561.           cr.processContentsManifest(contentsURI, manifestURI, contentsURI, false, true);
  3562.         }
  3563.         entries.close();
  3564.       }
  3565.       catch (e) {
  3566.         LOG("_upgradeChrome: failed to upgrade contents manifest for " + 
  3567.             "theme: " + item.id + ", exception: " + e + "... The theme will be " + 
  3568.             "disabled.");
  3569.         this._appDisableItem(item.id);
  3570.       }
  3571.       finally {
  3572.         try {
  3573.           entries.close();
  3574.         }
  3575.         catch (e) {
  3576.         }
  3577.       }
  3578.       checkForNewChrome = true;
  3579.     }
  3580.     return checkForNewChrome;  
  3581.   },
  3582.   
  3583.   _checkForUncoveredItem: function(id) {
  3584.     var ds = this.datasource;
  3585.     var oldLocation = this.getInstallLocation(id);
  3586.     var newLocations = [];
  3587.     for (var locationKey in StartupCache.entries) {
  3588.       var location = InstallLocations.get(locationKey);
  3589.       if (id in StartupCache.entries[locationKey] && 
  3590.           location.priority > oldLocation.priority)
  3591.         newLocations.push(location);
  3592.     }
  3593.     newLocations.sort(function(a, b) { return b.priority - a.priority; });
  3594.     if (newLocations.length > 0) {
  3595.       for (var i = 0; i < newLocations.length; ++i) {
  3596.         // Check to see that the item at the location exists
  3597.         var installRDF = newLocations[i].getItemFile(id, FILE_INSTALL_MANIFEST);
  3598.         if (installRDF.exists()) {
  3599.           // Update the visible item cache so that |_finalizeUpgrade| is properly 
  3600.           // called from |_finishOperations|
  3601.           var name = newLocations[i].name;
  3602.           ds.updateVisibleList(id, name, true);
  3603.           PendingOperations.addItem(OP_NEEDS_UPGRADE, 
  3604.                                     { locationKey: name, id: id });
  3605.           PendingOperations.addItem(OP_NEEDS_INSTALL, 
  3606.                                     { locationKey: name, id: id });
  3607.           break;
  3608.         }
  3609.         else {
  3610.           // If no item exists at the location specified, remove this item
  3611.           // from the visible items list and check again. 
  3612.           StartupCache.clearEntry(newLocations[i], id);
  3613.           ds.updateVisibleList(id, null, true);
  3614.         }
  3615.       }
  3616.     }
  3617.     else
  3618.       ds.updateVisibleList(id, null, true);
  3619.   },
  3620.   
  3621.   /**
  3622.    * Finish up pending operations - perform upgrades, installs, enables/disables, 
  3623.    * uninstalls etc.
  3624.    * @returns true if actions were performed that require a restart, false 
  3625.    *          otherwise.
  3626.    */
  3627.   _finishOperations: function() {
  3628.     try {
  3629.       // Stuff has changed, load the Extensions datasource in all its RDFey
  3630.       // glory. 
  3631.       var ds = this.datasource;
  3632.       var updatedTargetAppInfos = [];
  3633.  
  3634.       var needsRestart = false;      
  3635.       do {
  3636.         // Enable and disable during startup so items that are changed in the
  3637.         // ui can be reset to a no-op.
  3638.         // Look for extensions that need to be enabled.
  3639.         var items = PendingOperations.getOperations(OP_NEEDS_ENABLE);
  3640.         for (var i = items.length - 1; i >= 0; --i) {
  3641.           var id = items[i].id;
  3642.           var installLocation = this.getInstallLocation(id);
  3643.           StartupCache.put(installLocation, id, OP_NONE, true);
  3644.           PendingOperations.clearItem(OP_NEEDS_ENABLE, id);
  3645.           needsRestart = true;
  3646.         }
  3647.         PendingOperations.clearItems(OP_NEEDS_ENABLE);
  3648.  
  3649.         // Look for extensions that need to be disabled.
  3650.         items = PendingOperations.getOperations(OP_NEEDS_DISABLE);
  3651.         for (i = items.length - 1; i >= 0; --i) {
  3652.           id = items[i].id;
  3653.           installLocation = this.getInstallLocation(id);
  3654.           StartupCache.put(installLocation, id, OP_NONE, true);
  3655.           PendingOperations.clearItem(OP_NEEDS_DISABLE, id);
  3656.           needsRestart = true;
  3657.         }
  3658.         PendingOperations.clearItems(OP_NEEDS_DISABLE);
  3659.  
  3660.         // Look for extensions that need to be upgraded. The process here is to
  3661.         // uninstall the old version of the extension first, then install the
  3662.         // new version in its place. 
  3663.         items = PendingOperations.getOperations(OP_NEEDS_UPGRADE);
  3664.         for (i = items.length - 1; i >= 0; --i) {
  3665.           id = items[i].id;
  3666.           var oldLocation = this.getInstallLocation(id);
  3667.           var newLocation = InstallLocations.get(items[i].locationKey);
  3668.           if (newLocation.priority <= oldLocation.priority) {
  3669.             // check if there is updated app compatibility info
  3670.             var newTargetAppInfo = ds.getUpdatedTargetAppInfo(id);
  3671.             if (newTargetAppInfo)
  3672.               updatedTargetAppInfos.push(newTargetAppInfo);
  3673.             this._finalizeUpgrade(id);
  3674.           }
  3675.         }
  3676.         PendingOperations.clearItems(OP_NEEDS_UPGRADE);
  3677.  
  3678.         // Install items
  3679.         items = PendingOperations.getOperations(OP_NEEDS_INSTALL);
  3680.         for (i = items.length - 1; i >= 0; --i) {
  3681.           needsRestart = true;
  3682.           id = items[i].id;
  3683.           // check if there is updated app compatibility info
  3684.           newTargetAppInfo = ds.getUpdatedTargetAppInfo(id);
  3685.           if (newTargetAppInfo)
  3686.             updatedTargetAppInfos.push(newTargetAppInfo);
  3687.           this._finalizeInstall(id, null);
  3688.         }
  3689.         PendingOperations.clearItems(OP_NEEDS_INSTALL);
  3690.  
  3691.         // Look for extensions that need to be removed. This MUST be done after
  3692.         // the install operations since extensions to be installed may have to be
  3693.         // uninstalled if there are errors during the installation process!
  3694.         items = PendingOperations.getOperations(OP_NEEDS_UNINSTALL);
  3695.         for (i = items.length - 1; i >= 0; --i) {
  3696.           id = items[i].id;
  3697.           this._finalizeUninstall(id);
  3698.           this._checkForUncoveredItem(id);
  3699.           needsRestart = true;
  3700.         }
  3701.         PendingOperations.clearItems(OP_NEEDS_UNINSTALL);
  3702.  
  3703.         // When there have been operations and all operations have completed.
  3704.         if (PendingOperations.size == 0) {
  3705.           // If there is updated app compatibility info update the data sources.
  3706.           for (i = 0; i < updatedTargetAppInfos.length; ++i)
  3707.             ds.updateTargetAppInfo(updatedTargetAppInfos[i].id,
  3708.                                    updatedTargetAppInfos[i].minVersion,
  3709.                                    updatedTargetAppInfos[i].maxVersion);
  3710.  
  3711.           // Enumerate all items
  3712.           var ctr = getContainer(ds, ds._itemRoot);
  3713.           var elements = ctr.GetElements();
  3714.           while (elements.hasMoreElements()) {
  3715.             var itemResource = elements.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  3716.  
  3717.             // Ensure appDisabled is in the correct state.
  3718.             id = stripPrefix(itemResource.Value, PREFIX_ITEM_URI);
  3719.             if (this._isUsableItem(id))
  3720.               ds.setItemProperty(id, EM_R("appDisabled"), null);
  3721.             else
  3722.               ds.setItemProperty(id, EM_R("appDisabled"), EM_L("true"));
  3723.  
  3724.             // userDisabled is set based on its value being OP_NEEDS_ENABLE or
  3725.             // OP_NEEDS_DISABLE. This allows us to have an item to be enabled
  3726.             // by the app and disabled by the user during a single restart.
  3727.             var value = stringData(ds.GetTarget(itemResource, EM_R("userDisabled"), true));
  3728.             if (value == OP_NEEDS_ENABLE)
  3729.               ds.setItemProperty(id, EM_R("userDisabled"), null);
  3730.             else if (value == OP_NEEDS_DISABLE)
  3731.               ds.setItemProperty(id, EM_R("userDisabled"), EM_L("true"));
  3732.           }
  3733.         }
  3734.       }
  3735.       while (PendingOperations.size > 0);
  3736.       
  3737.       // Upgrade contents.rdf files to the new chrome.manifest format for
  3738.       // existing Extensions and Themes
  3739.       if (this._upgradeChrome()) {
  3740.         var cr = Components.classes["@mozilla.org/chrome/chrome-registry;1"]
  3741.                            .getService(Components.interfaces.nsIChromeRegistry);
  3742.         cr.checkForNewChrome();
  3743.       }
  3744.  
  3745.       // If no additional restart is required, it implies that there are
  3746.       // no new components that need registering so we can inform the app
  3747.       // not to do any extra startup checking next time round. 
  3748.       this._updateManifests(needsRestart);
  3749.  
  3750.     }
  3751.     catch (e) {
  3752.       LOG("ExtensionManager:_finishOperations - failure, catching exception - lineno: " +
  3753.           e.lineNumber + " - file: " + e.fileName + " - " + e);
  3754.     }
  3755.     return needsRestart;
  3756.   },
  3757.   
  3758.   /**
  3759.    * Checks to see if there are items that are incompatible with this version
  3760.    * of the application, disables them to prevent incompatibility problems and 
  3761.    * invokes the Update Wizard to look for newer versions.
  3762.    * @returns true if there were incompatible items installed and disabled, and
  3763.    *          the application must now be restarted to reinitialize XPCOM,
  3764.    *          false otherwise.
  3765.    */
  3766.   checkForMismatches: function() {
  3767.     // Check to see if the version of the application that is being started
  3768.     // now is the same one that was started last time. 
  3769.     var currAppVersion = gApp.version;
  3770.     var lastAppVersion = getPref("getCharPref", PREF_EM_LAST_APP_VERSION, "");
  3771.     if (currAppVersion == lastAppVersion)
  3772.       return false;
  3773.     // With a new profile lastAppVersion doesn't exist yet.
  3774.     if (!lastAppVersion) {
  3775.       gPref.setCharPref(PREF_EM_LAST_APP_VERSION, currAppVersion);
  3776.       return false;
  3777.     }
  3778.  
  3779.     // Version mismatch, we have to load the extensions datasource and do
  3780.     // version checking. Time hit here doesn't matter since this doesn't happen
  3781.     // all that often.
  3782.     this._upgradeFromV10();
  3783.     
  3784.     // Make the extensions datasource consistent if it isn't already.
  3785.     var isDirty = false;
  3786.     if (this._ensureDatasetIntegrity())
  3787.       isDirty = true;
  3788.  
  3789.     if (this._checkForFileChanges())
  3790.       isDirty = true;
  3791.  
  3792.     if (PendingOperations.size != 0)
  3793.       isDirty = true;
  3794.  
  3795.     if (isDirty)
  3796.       this._finishOperations();
  3797.  
  3798.     var ds = this.datasource;
  3799.     // During app upgrade cleanup invalid entries in the extensions datasource.
  3800.     ds.beginUpdateBatch();
  3801.     var allResources = ds.GetAllResources();
  3802.     while (allResources.hasMoreElements()) {
  3803.       var res = allResources.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  3804.       if (ds.GetTarget(res, EM_R("downloadURL"), true) ||
  3805.           (!ds.GetTarget(res, EM_R("installLocation"), true) &&
  3806.           stringData(ds.GetTarget(res, EM_R("appDisabled"), true)) == "true"))
  3807.         ds.removeDownload(res.Value);
  3808.     }
  3809.     ds.endUpdateBatch();
  3810.  
  3811.     var allAppManaged = true;
  3812.     var ctr = getContainer(ds, ds._itemRoot);
  3813.     var elements = ctr.GetElements();
  3814.     while (elements.hasMoreElements()) {
  3815.       var itemResource = elements.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  3816.       var id = stripPrefix(itemResource.Value, PREFIX_ITEM_URI);
  3817.       if (ds.getItemProperty(id, "appManaged") == "true") {
  3818.         // Force an update of the metadata for appManaged extensions since the
  3819.         // last modified time is not updated for directories on FAT / FAT32
  3820.         // filesystems when software update applies a new version of the app.
  3821.         var location = this.getInstallLocation(id);
  3822.         if (location.name == KEY_APP_GLOBAL) {
  3823.           var installRDF = location.getItemFile(id, FILE_INSTALL_MANIFEST);
  3824.           if (installRDF.exists()) {
  3825.             var metadataDS = getInstallManifest(installRDF);
  3826.             ds.addItemMetadata(id, metadataDS, location);
  3827.             ds.updateProperty(id, "compatible");
  3828.           }
  3829.         }
  3830.       }
  3831.       else if (allAppManaged)
  3832.         allAppManaged = false;
  3833.       // appDisabled is determined by an item being compatible,
  3834.       // satisfying its dependencies, and not being blocklisted
  3835.       if (this._isUsableItem(id)) {
  3836.         if (ds.getItemProperty(id, "appDisabled"))
  3837.           ds.setItemProperty(id, EM_R("appDisabled"), null);
  3838.       }
  3839.       else if (!ds.getItemProperty(id, "appDisabled"))
  3840.         ds.setItemProperty(id, EM_R("appDisabled"), EM_L("true"));
  3841.  
  3842.       ds.setItemProperty(id, EM_R("availableUpdateURL"), null);
  3843.       ds.setItemProperty(id, EM_R("availableUpdateVersion"), null);
  3844.     }
  3845.     // Update the manifests to reflect the items that were disabled / enabled.
  3846.     this._updateManifests(true);
  3847.  
  3848.     // Always check for compatibility updates when upgrading if we have add-ons
  3849.     // that aren't managed by the application.
  3850.     if (!allAppManaged)
  3851.       this._showMismatchWindow();
  3852.     
  3853.     // Finish any pending upgrades from the compatibility update to avoid an
  3854.     // additional restart.
  3855.     if (PendingOperations.size != 0)
  3856.       this._finishOperations();
  3857.  
  3858.     // Update the last app version so we don't do this again with this version.
  3859.     gPref.setCharPref(PREF_EM_LAST_APP_VERSION, currAppVersion);
  3860.  
  3861.     // Prevent extension update dialog from showing
  3862.     gPref.setBoolPref(PREF_UPDATE_NOTIFYUSER, false);
  3863.     return true;
  3864.   },
  3865.  
  3866.   /**
  3867.    * Shows the "Compatibility Updates" UI
  3868.    */
  3869.   _showMismatchWindow: function(items) {
  3870.     var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
  3871.                        .getService(Components.interfaces.nsIWindowMediator);
  3872.     var wizard = wm.getMostRecentWindow("Update:Wizard");
  3873.     if (wizard)
  3874.       wizard.focus();
  3875.     else {
  3876.       var features = "chrome,centerscreen,dialog,titlebar,modal";
  3877.       // This *must* be modal so as not to break startup! This code is invoked before
  3878.       // the main event loop is initiated (via checkForMismatches).
  3879.       var ww = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
  3880.                          .getService(Components.interfaces.nsIWindowWatcher);
  3881.       ww.openWindow(null, URI_EXTENSION_UPDATE_DIALOG, "", features, null);
  3882.     }
  3883.   },
  3884.   
  3885.   /*
  3886.    * Catch all for facilitating a version 1.0 profile upgrade.
  3887.    * 1) removes the abandoned default theme directory from the profile.
  3888.    * 2) prepares themes installed with version 1.0 for installation.
  3889.    * 3) initiates an install to populate the new extensions datasource.
  3890.    * 4) migrates the disabled attribute from the old datasource.
  3891.    * 5) migrates the app compatibility info from the old datasource.
  3892.    */
  3893.   _upgradeFromV10: function() {
  3894.     var extensionsDS = getFile(KEY_PROFILEDIR, [FILE_EXTENSIONS]);
  3895.     var dsExists = extensionsDS.exists();
  3896.     // Toolkiit 1.7 profiles (Firefox 1.0, Thunderbird 1.0, etc.) have a default
  3897.     // theme directory in the profile's extensions directory that will be
  3898.     // disabled due to having a maxVersion that is incompatible with the
  3899.     // toolkit 1.8 release of the app.
  3900.     var profileDefaultTheme = getDirNoCreate(KEY_PROFILEDS, [DIR_EXTENSIONS,
  3901.                                              stripPrefix(RDFURI_DEFAULT_THEME, PREFIX_ITEM_URI)]);
  3902.     if (profileDefaultTheme && profileDefaultTheme.exists()) {
  3903.       removeDirRecursive(profileDefaultTheme);
  3904.       // Sunbird 0.3a1 didn't move the default theme into the app's extensions
  3905.       // directory and we can't install it while uninstalling the one in the
  3906.       // profile directory. If we have a toolkit 1.8 extensions datasource and
  3907.       // a profile default theme deleting the toolkit 1.8 extensions datasource
  3908.       // will fix this problem when the datasource is re-created.
  3909.       if (dsExists)
  3910.         extensionsDS.remove(false);
  3911.     }
  3912.  
  3913.     // return early if the toolkit 1.7 extensions datasource file doesn't exist.
  3914.     var oldExtensionsFile = getFile(KEY_PROFILEDIR, [DIR_EXTENSIONS, "Extensions.rdf"]);
  3915.     if (!oldExtensionsFile.exists())
  3916.       return;
  3917.  
  3918.     // Sunbird 0.2 used a different GUID for the default theme
  3919.     profileDefaultTheme = getDirNoCreate(KEY_PROFILEDS, [DIR_EXTENSIONS,
  3920.                                          "{8af2d0a7-e394-4de2-ae55-2dae532a7a9b}"]);
  3921.     if (profileDefaultTheme && profileDefaultTheme.exists())
  3922.       removeDirRecursive(profileDefaultTheme);
  3923.  
  3924.     // Firefox 0.9 profiles may have DOMi 1.0 with just an install.rdf
  3925.     var profileDOMi = getDirNoCreate(KEY_PROFILEDS, [DIR_EXTENSIONS,
  3926.                                      "{641d8d09-7dda-4850-8228-ac0ab65e2ac9}"]);
  3927.     if (profileDOMi && profileDOMi.exists())
  3928.       removeDirRecursive(profileDOMi);
  3929.  
  3930.     // return early to avoid migrating data twice if we already have a
  3931.     // toolkit 1.8 extension datasource.
  3932.     if (dsExists)
  3933.       return;
  3934.  
  3935.     // Prepare themes for installation
  3936.     // Only enumerate directories in the app-profile and app-global locations.
  3937.     var locations = [KEY_APP_PROFILE, KEY_APP_GLOBAL];
  3938.     for (var i = 0; i < locations.length; ++i) {
  3939.       var location = InstallLocations.get(locations[i]);
  3940.       if (!location.canAccess)
  3941.         continue;
  3942.  
  3943.       var entries = location.itemLocations;
  3944.       var entry;
  3945.       while ((entry = entries.nextFile)) {
  3946.         var installRDF = entry.clone();
  3947.         installRDF.append(FILE_INSTALL_MANIFEST);
  3948.  
  3949.         var chromeDir = entry.clone();
  3950.         chromeDir.append(DIR_CHROME);
  3951.  
  3952.         // It must be a directory without an install.rdf and it must contain
  3953.         // a chrome directory
  3954.         if (!entry.isDirectory() || installRDF.exists() || !chromeDir.exists())
  3955.           continue;
  3956.  
  3957.         var chromeEntries = chromeDir.directoryEntries.QueryInterface(nsIDirectoryEnumerator);
  3958.         if (!chromeEntries.hasMoreElements())
  3959.           continue;
  3960.  
  3961.         // We're relying on the fact that there is only one JAR file
  3962.         // in the "chrome" directory. This is a hack, but it works.
  3963.         var jarFile = chromeEntries.nextFile;
  3964.         if (jarFile.isDirectory())
  3965.           continue;
  3966.         var id = location.getIDForLocation(entry);
  3967.  
  3968.         try {
  3969.           var zipReader = getZipReaderForFile(jarFile);
  3970.           zipReader.extract(FILE_INSTALL_MANIFEST, installRDF);
  3971.  
  3972.           var contentsManifestFile = location.getItemFile(id, FILE_CONTENTS_MANIFEST);
  3973.           zipReader.extract(FILE_CONTENTS_MANIFEST, contentsManifestFile);
  3974.  
  3975.           var rootFiles = ["preview.png", "icon.png"];
  3976.           for (var i = 0; i < rootFiles.length; ++i) {
  3977.             try {
  3978.               var target = location.getItemFile(id, rootFiles[i]);
  3979.               zipReader.extract(rootFiles[i], target);
  3980.             }
  3981.             catch (e) {
  3982.             }
  3983.           }
  3984.           zipReader.close();
  3985.         }
  3986.         catch (e) {
  3987.           LOG("ExtensionManager:_upgradeFromV10 - failed to extract theme files\r\n" +
  3988.               "Exception: " + e);
  3989.         }
  3990.       }
  3991.     }
  3992.  
  3993.     // When upgrading from a version 1.0 profile we need to populate the
  3994.     // extensions datasource with all items before checking for incompatible
  3995.     // items since the datasource hasn't been created yet.
  3996.     var itemsToCheck = [];
  3997.     if (this._checkForFileChanges()) {
  3998.       // Create a list of all items that are to be installed so we can migrate
  3999.       // these items's settings to the new datasource.
  4000.       var items = PendingOperations.getOperations(OP_NEEDS_INSTALL);
  4001.       for (i = items.length - 1; i >= 0; --i) {
  4002.         if (items[i].locationKey == KEY_APP_PROFILE ||
  4003.             items[i].locationKey == KEY_APP_GLOBAL)
  4004.           itemsToCheck.push(items[i].id);
  4005.       }
  4006.       this._finishOperations();
  4007.     }
  4008.  
  4009.     // If there are no items to migrate settings for return early.
  4010.     if (itemsToCheck.length == 0)
  4011.       return;
  4012.  
  4013.     var fileURL = getURLSpecFromFile(oldExtensionsFile);
  4014.     var oldExtensionsDS = gRDF.GetDataSourceBlocking(fileURL);
  4015.     var versionChecker = getVersionChecker();
  4016.     var ds = this.datasource;
  4017.     var currAppVersion = gApp.version;
  4018.     var currAppID = gApp.ID;
  4019.     for (var i = 0; i < itemsToCheck.length; ++i) {
  4020.       var item = ds.getItemForID(itemsToCheck[i]);
  4021.       var oldPrefix = (item.type == nsIUpdateItem.TYPE_EXTENSION) ? PREFIX_EXTENSION : PREFIX_THEME;
  4022.       var oldRes = gRDF.GetResource(oldPrefix + item.id);
  4023.       // Disable the item if it was disabled in the version 1.0 extensions
  4024.       // datasource.
  4025.       if (oldExtensionsDS.GetTarget(oldRes, EM_R("disabled"), true))
  4026.         ds.setItemProperty(item.id, EM_R("userDisabled"), EM_L("true"));
  4027.  
  4028.       // app enable all items. If it is incompatible it will be app disabled
  4029.       // later on.
  4030.       ds.setItemProperty(item.id, EM_R("appDisabled"), null);
  4031.  
  4032.       // if the item is already compatible don't attempt to migrate the
  4033.       // item's compatibility info
  4034.       var newRes = getResourceForID(itemsToCheck[i]);
  4035.       if (ds.isCompatible(ds, newRes))
  4036.         continue;
  4037.  
  4038.       var updatedMinVersion = null;
  4039.       var updatedMaxVersion = null;
  4040.       var targetApps = oldExtensionsDS.GetTargets(oldRes, EM_R("targetApplication"), true);
  4041.       while (targetApps.hasMoreElements()) {
  4042.         var targetApp = targetApps.getNext();
  4043.         if (targetApp instanceof Components.interfaces.nsIRDFResource) {
  4044.           try {
  4045.             var foundAppID = stringData(oldExtensionsDS.GetTarget(targetApp, EM_R("id"), true));
  4046.             if (foundAppID != currAppID) // Different target application
  4047.               continue;
  4048.  
  4049.             updatedMinVersion = stringData(oldExtensionsDS.GetTarget(targetApp, EM_R("minVersion"), true));
  4050.             updatedMaxVersion = stringData(oldExtensionsDS.GetTarget(targetApp, EM_R("maxVersion"), true));
  4051.  
  4052.             // Only set the target app info if the extension's target app info
  4053.             // in the version 1.0 extensions datasource makes it compatible
  4054.             if (versionChecker.compare(currAppVersion, updatedMinVersion) >= 0 &&
  4055.                 versionChecker.compare(currAppVersion, updatedMaxVersion) <= 0)
  4056.               ds.updateTargetAppInfo(item.id, updatedMinVersion, updatedMaxVersion);
  4057.  
  4058.             break;
  4059.           }
  4060.           catch (e) { 
  4061.           }
  4062.         }
  4063.       }
  4064.     }
  4065.   },
  4066.  
  4067.   /**
  4068.    * Write the Extensions List and the Startup Cache
  4069.    * @param   needsRestart
  4070.    *          true if the application needs to restart again, false otherwise.
  4071.    */  
  4072.   _updateManifests: function(needsRestart) {
  4073.     // Write the Startup Cache (All Items, visible or not)
  4074.     StartupCache.write();
  4075.     // Write the Extensions Locations Manifest (Visible, enabled items)
  4076.     this._updateExtensionsManifest(needsRestart);
  4077.   },
  4078.  
  4079.   /**
  4080.    * Get a list of items that are currently "active" (turned on) of a specific
  4081.    * type
  4082.    * @param   type
  4083.    *          The nsIUpdateItem type to return a list of items of
  4084.    * @returns An array of active items of the specified type.
  4085.    */
  4086.   _getActiveItems: function(type) {
  4087.     var allItems = this.getItemList(type, { });
  4088.     var activeItems = [];
  4089.     var ds = this.datasource;
  4090.     for (var i = 0; i < allItems.length; ++i) {
  4091.       var item = allItems[i];
  4092.  
  4093.       // An item entry is valid only if it is not disabled, not about to 
  4094.       // be disabled, and not about to be uninstalled.
  4095.       var installLocation = this.getInstallLocation(item.id);
  4096.       if (installLocation.name in StartupCache.entries &&
  4097.           item.id in StartupCache.entries[installLocation.name] &&
  4098.           StartupCache.entries[installLocation.name][item.id]) {
  4099.         var op = StartupCache.entries[installLocation.name][item.id].op;
  4100.         if (op == OP_NEEDS_INSTALL || op == OP_NEEDS_UPGRADE || 
  4101.             op == OP_NEEDS_UNINSTALL || op == OP_NEEDS_DISABLE)
  4102.           continue;
  4103.       }
  4104.       // Suppress items that have been disabled by the user or the app.
  4105.       if (ds.getItemProperty(item.id, "isDisabled") != "true")
  4106.         activeItems.push({ id: item.id, location: installLocation });
  4107.     }
  4108.  
  4109.     return activeItems;
  4110.   },
  4111.   
  4112.   /**
  4113.    * Write the Extensions List
  4114.    * @param   needsRestart
  4115.    *          true if the application needs to restart again, false otherwise.
  4116.    */
  4117.   _updateExtensionsManifest: function(needsRestart) {
  4118.     // When an operation is performed that requires a component re-registration
  4119.     // (extension enabled/disabled, installed, uninstalled), we must write the
  4120.     // set of paths where extensions live so that the startup system can determine
  4121.     // where additional components, preferences, chrome manifests etc live.
  4122.     //
  4123.     // To do this we obtain a list of active extensions and themes and write 
  4124.     // these to the extensions.ini file in the profile directory.
  4125.     var validExtensions = this._getActiveItems(nsIUpdateItem.TYPE_EXTENSION +
  4126.                                                nsIUpdateItem.TYPE_LOCALE +
  4127.                                                nsIUpdateItem.TYPE_PLUGIN);
  4128.     var validThemes     = this._getActiveItems(nsIUpdateItem.TYPE_THEME);
  4129.  
  4130.     var extensionsLocationsFile = getFile(KEY_PROFILEDIR, [FILE_EXTENSION_MANIFEST]);
  4131.     var fos = openSafeFileOutputStream(extensionsLocationsFile);
  4132.         
  4133.     var extensionSectionHeader = "[ExtensionDirs]\r\n";
  4134.     fos.write(extensionSectionHeader, extensionSectionHeader.length);
  4135.     for (var i = 0; i < validExtensions.length; ++i) {
  4136.       var e = validExtensions[i];
  4137.       var itemLocation = e.location.getItemLocation(e.id).QueryInterface(nsILocalFile);
  4138.       var descriptor = getAbsoluteDescriptor(itemLocation);
  4139.       var line = "Extension" + i + "=" + descriptor + "\r\n";
  4140.       fos.write(line, line.length);
  4141.     }
  4142.  
  4143.     var themeSectionHeader = "[ThemeDirs]\r\n";
  4144.     fos.write(themeSectionHeader, themeSectionHeader.length);
  4145.     for (i = 0; i < validThemes.length; ++i) {
  4146.       var e = validThemes[i];
  4147.       var itemLocation = e.location.getItemLocation(e.id).QueryInterface(nsILocalFile);
  4148.       var descriptor = getAbsoluteDescriptor(itemLocation);
  4149.       var line = "Extension" + i + "=" + descriptor + "\r\n";
  4150.       fos.write(line, line.length);
  4151.     }
  4152.  
  4153.     closeSafeFileOutputStream(fos);
  4154.  
  4155.     // Now refresh the compatibility manifest.
  4156.     this._extensionListChanged = needsRestart;
  4157.   },
  4158.   
  4159.   /**
  4160.    * Say whether or not the Extension List has changed (and thus whether or not
  4161.    * the system will have to restart the next time it is started).
  4162.    * @param   val
  4163.    *          true if the Extension List has changed, false otherwise.
  4164.    * @returns |val|
  4165.    */
  4166.   set _extensionListChanged(val) {
  4167.     // When an extension has an operation perform on it (e.g. install, upgrade,
  4168.     // disable, etc.) we are responsible for creating the .autoreg file and
  4169.     // nsAppRunner is responsible for removing it on restart. At some point it
  4170.     // may make sense to be able to cancel a registration but for now we only
  4171.     // create the file.
  4172.     try {
  4173.       var autoregFile = getFile(KEY_PROFILEDIR, [FILE_AUTOREG]);
  4174.       if (val && !autoregFile.exists())
  4175.         autoregFile.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  4176.     }
  4177.     catch (e) {
  4178.     }
  4179.     return val;
  4180.   },
  4181.   
  4182.   /**
  4183.    * Gathers data about an item specified by the supplied Install Manifest
  4184.    * and determines whether or not it can be installed as-is. It makes this 
  4185.    * determination by validating the item's GUID, Version, and determining 
  4186.    * if it is compatible with this application.
  4187.    * @param   installManifest 
  4188.    *          A nsIRDFDataSource representing the Install Manifest of the 
  4189.    *          item to be installed.
  4190.    * @return  A JS Object with the following properties:
  4191.    *          "id"       The GUID of the Item being installed.
  4192.    *          "version"  The Version string of the Item being installed.
  4193.    *          "name"     The Name of the Item being installed.
  4194.    *          "type"     The nsIUpdateItem type of the Item being installed.
  4195.    *          "targetApps" An array of TargetApplication Info Objects
  4196.    *                     with "id", "minVersion" and "maxVersion" properties,
  4197.    *                     representing applications targeted by this item.
  4198.    *          "error"    The result code:
  4199.    *                     INSTALLERROR_SUCCESS      
  4200.    *                       no error, item can be installed
  4201.    *                     INSTALLERROR_INVALID_GUID 
  4202.    *                       error, GUID is not well-formed
  4203.    *                     INSTALLERROR_INVALID_VERSION
  4204.    *                       error, Version is not well-formed
  4205.    *                     INSTALLERROR_INCOMPATIBLE_VERSION
  4206.    *                       error, item is not compatible with this version
  4207.    *                       of the application.
  4208.    *                     INSTALLERROR_INCOMPATIBLE_PLATFORM
  4209.    *                       error, item is not compatible with the operating
  4210.    *                       system or ABI the application was built for.
  4211.    *                     INSTALLERROR_BLOCKLISTED
  4212.    *                       error, item is blocklisted
  4213.    */
  4214.   _getInstallData: function(installManifest) {
  4215.     var installData = { id          : "", 
  4216.                         version     : "", 
  4217.                         name        : "", 
  4218.                         type        : 0, 
  4219.                         error       : INSTALLERROR_SUCCESS, 
  4220.                         targetApps  : [],
  4221.                         currentApp  : null };
  4222.  
  4223.     // Fetch properties from the Install Manifest
  4224.     installData.id       = getManifestProperty(installManifest, "id");
  4225.     installData.version  = getManifestProperty(installManifest, "version");
  4226.     installData.name     = getManifestProperty(installManifest, "name");
  4227.     installData.type     = getAddonTypeFromInstallManifest(installManifest);
  4228.     installData.updateURL= getManifestProperty(installManifest, "updateURL");
  4229.  
  4230.     /**
  4231.      * Reads a property off a Target Application resource
  4232.      * @param   resource
  4233.      *          The RDF Resource for a Target Application
  4234.      * @param   property
  4235.      *          The property (less EM_NS) to read
  4236.      * @returns The string literal value of the property.
  4237.      */
  4238.     function readTAProperty(resource, property) {
  4239.       return stringData(installManifest.GetTarget(resource, EM_R(property), true));
  4240.     }
  4241.     
  4242.     var targetApps = installManifest.GetTargets(gInstallManifestRoot, 
  4243.                                                 EM_R("targetApplication"), 
  4244.                                                 true);
  4245.     while (targetApps.hasMoreElements()) {
  4246.       var targetApp = targetApps.getNext();
  4247.       if (targetApp instanceof Components.interfaces.nsIRDFResource) {
  4248.         try {
  4249.           var data = { id        : readTAProperty(targetApp, "id"),
  4250.                        minVersion: readTAProperty(targetApp, "minVersion"),
  4251.                        maxVersion: readTAProperty(targetApp, "maxVersion") };
  4252.           installData.targetApps.push(data);
  4253.           if (data.id == gApp.ID) 
  4254.             installData.currentApp = data;
  4255.         }
  4256.         catch (e) {
  4257.           continue;
  4258.         }
  4259.       }
  4260.     }
  4261.  
  4262.     // If the item specifies one or more target platforms, make sure our OS/ABI
  4263.     // combination is in the list - otherwise, refuse to install the item.
  4264.     var targetPlatforms = null;
  4265.     try {
  4266.       targetPlatforms = installManifest.GetTargets(gInstallManifestRoot, 
  4267.                                                    EM_R("targetPlatform"), 
  4268.                                                    true);
  4269.     } catch(e) {
  4270.       // No targetPlatform nodes, continue.
  4271.     }
  4272.     if (targetPlatforms != null && targetPlatforms.hasMoreElements()) {
  4273.       var foundMatchingOS = false;
  4274.       var foundMatchingOSAndABI = false;
  4275.       var requireABICompatibility = false;
  4276.       while (targetPlatforms.hasMoreElements()) {
  4277.         var targetPlatform = stringData(targetPlatforms.getNext());
  4278.         var os = targetPlatform.split("_")[0];
  4279.         var index = targetPlatform.indexOf("_");
  4280.         var abi = index != -1 ? targetPlatform.substr(index + 1) : null;
  4281.         if (os == gOSTarget) {
  4282.           foundMatchingOS = true;
  4283.           // The presence of any ABI part after our OS means ABI is important.
  4284.           if (abi != null) {
  4285.             requireABICompatibility = true;
  4286.             // If we don't know our ABI, we can't be compatible
  4287.             if (abi == gXPCOMABI && abi != UNKNOWN_XPCOM_ABI) {
  4288.               foundMatchingOSAndABI = true;
  4289.               break;
  4290.             }
  4291.           }
  4292.         }
  4293.       }
  4294.       if (!foundMatchingOS || (requireABICompatibility && !foundMatchingOSAndABI)) {
  4295.         installData.error = INSTALLERROR_INCOMPATIBLE_PLATFORM;
  4296.         return installData;
  4297.       }
  4298.     }
  4299.  
  4300.     // Validate the Item ID
  4301.     if (!gIDTest.test(installData.id)) {
  4302.       installData.error = INSTALLERROR_INVALID_GUID;
  4303.       return installData;
  4304.     }
  4305.      
  4306.     // Check the target application range specified by the extension metadata.
  4307.     if (gCheckCompatibility &&
  4308.         !this.datasource.isCompatible(installManifest, gInstallManifestRoot, undefined))
  4309.       installData.error = INSTALLERROR_INCOMPATIBLE_VERSION;
  4310.     
  4311.     // Check if the item is blocklisted.
  4312.     if (this.datasource.isBlocklisted(installData.id, installData.version,
  4313.                                       undefined, undefined))
  4314.       installData.error = INSTALLERROR_BLOCKLISTED;
  4315.  
  4316.     return installData;
  4317.   },  
  4318.   
  4319.   /**
  4320.    * Installs an item from a XPI/JAR file. 
  4321.    * This is the main entry point into the Install system from outside code
  4322.    * (e.g. XPInstall).
  4323.    * @param   aXPIFile
  4324.    *          The file to install from.
  4325.    * @param   aInstallLocationKey
  4326.    *          The name of the Install Location where this item should be 
  4327.    *          installed.
  4328.    */  
  4329.   installItemFromFile: function(xpiFile, installLocationKey) {
  4330.     this.installItemFromFileInternal(xpiFile, installLocationKey, null);
  4331.   },
  4332.   
  4333.   /**
  4334.    * Installs an item from a XPI/JAR file.
  4335.    * @param   aXPIFile
  4336.    *          The file to install from.
  4337.    * @param   aInstallLocationKey
  4338.    *          The name of the Install Location where this item should be 
  4339.    *          installed.
  4340.    * @param   aInstallManifest
  4341.    *          An updated Install Manifest from the Version Update check.
  4342.    *          Can be null when invoked from callers other than the Version
  4343.    *          Update check.
  4344.    */
  4345.   installItemFromFileInternal: function(aXPIFile, aInstallLocationKey, aInstallManifest) {
  4346.     var em = this;
  4347.     /**
  4348.      * Gets the Install Location for an Item.
  4349.      * @param   itemID 
  4350.      *          The GUID of the item to find an Install Location for.
  4351.      * @return  An object implementing nsIInstallLocation which represents the 
  4352.      *          location where the specified item should be installed. 
  4353.      *          This can be:
  4354.      *          1. an object that corresponds to the location key supplied to
  4355.      *             |installItemFromFileInternal|,
  4356.      *          2. the default install location (the App Profile Extensions Folder)
  4357.      *             if no location key was supplied, or the location key supplied
  4358.      *             was not in the set of registered locations
  4359.      *          3. null, if the location selected by 1 or 2 above does not support
  4360.      *             installs from XPI/JAR files, or that location is not writable 
  4361.      *             with the current access privileges.
  4362.      */
  4363.     function getInstallLocation(itemID) {
  4364.       // Here I use "upgrade" to mean "install a different version of an item".
  4365.       var installLocation = em.getInstallLocation(itemID);
  4366.       if (!installLocation) {
  4367.         // This is not an "upgrade", since we don't have any location data for the
  4368.         // extension ID specified - that is, it's not in our database.
  4369.  
  4370.         // Caller supplied a key to a registered location, use that location
  4371.         // for the installation
  4372.         installLocation = InstallLocations.get(aInstallLocationKey);
  4373.         if (installLocation) {
  4374.           // If the specified location does not have a common metadata location
  4375.           // (e.g. extensions have no common root, or other location specified
  4376.           // by the location implementation) - e.g. for a Registry Key enumeration
  4377.           // location - we cannot install or upgrade using a XPI file, probably
  4378.           // because these application types will be handling upgrading themselves.
  4379.           // Just bail.
  4380.           if (!installLocation.location) {
  4381.             LOG("Install Location \"" + installLocation.name + "\" does not support " + 
  4382.                 "installation of items from XPI/JAR files. You must manage " + 
  4383.                 "installation and update of these items yourself.");
  4384.             installLocation = null;
  4385.           }
  4386.         }
  4387.         else {
  4388.           // In the absence of a preferred install location, just default to
  4389.           // the App-Profile 
  4390.           installLocation = InstallLocations.get(KEY_APP_PROFILE);
  4391.         }
  4392.       } 
  4393.       else {
  4394.         // This is an "upgrade", but not through the Update System, because the
  4395.         // Update code will not let an extension with an incompatible target
  4396.         // app version range through to this point. This is an "upgrade" in the
  4397.         // sense that the user found a different version of an installed extension
  4398.         // and installed it through the web interface, so we have metadata.
  4399.         
  4400.         // If the location is different, return the preferred location rather than
  4401.         // the location of the currently installed version, because we may be in
  4402.         // the situation where an item is being installed into the global app 
  4403.         // dir when there's a version in the profile dir.
  4404.         if (installLocation.name != aInstallLocationKey) 
  4405.           installLocation = InstallLocations.get(aInstallLocationKey);
  4406.       }
  4407.       if (!installLocation.canAccess) {
  4408.         LOG("Install Location\"" + installLocation.name + "\" cannot be written " +
  4409.             "to with your access privileges. Installation will not proceed.");
  4410.         installLocation = null;
  4411.       }
  4412.       return installLocation;
  4413.     }
  4414.     
  4415.     /**
  4416.      * Stages a XPI file in the default item location specified by other 
  4417.      * applications when they registered with XulRunner if the item's
  4418.      * install manifest specified compatibility with them.
  4419.      */
  4420.     function stageXPIForOtherApps(xpiFile, installData) {
  4421.       for (var i = 0; i < installData.targetApps.length; ++i) {
  4422.         var targetApp = installData.targetApps[i];
  4423.         if (targetApp.id != gApp.ID) {
  4424.         /* XXXben uncomment when this works!
  4425.           var settingsThingy = Components.classes[]
  4426.                                         .getService(Components.interfaces.nsIXULRunnerSettingsThingy);
  4427.           try {
  4428.             var appPrefix = "SOFTWARE\\Mozilla\\XULRunner\\Applications\\";
  4429.             var branch = settingsThingy.getBranch(appPrefix + targetApp.id);
  4430.             var path = branch.getProperty("ExtensionsLocation");
  4431.             var destination = Components.classes["@mozilla.org/file/local;1"]
  4432.                                         .createInstance(nsILocalFile);
  4433.             destination.initWithPath(path);
  4434.             xpiFile.copyTo(file, xpiFile.leafName);
  4435.           }
  4436.           catch (e) {
  4437.           }
  4438.          */
  4439.         } 
  4440.       }        
  4441.     }
  4442.     
  4443.     /**
  4444.      * Extracts and then starts the install for extensions / themes contained
  4445.      * within a xpi.
  4446.      */
  4447.     function installMultiXPI(xpiFile, installData) {
  4448.       var fileURL = getURIFromFile(xpiFile).QueryInterface(nsIURL);
  4449.       if (fileURL.fileExtension.toLowerCase() != "xpi") {
  4450.         LOG("Invalid File Extension: Item: \"" + fileURL.fileName + "\" has an " + 
  4451.             "invalid file extension. Only xpi file extensions are allowed for " +
  4452.             "multiple item packages.");
  4453.         var bundle = BundleManager.getBundle(URI_EXTENSIONS_PROPERTIES);
  4454.         showMessage("invalidFileExtTitle", [], 
  4455.                     "invalidFileExtMessage", [installData.name,
  4456.                     fileURL.fileExtension,
  4457.                     bundle.GetStringFromName("type-" + installData.type)]);
  4458.         return;
  4459.       }
  4460.  
  4461.       try {
  4462.         var zipReader = getZipReaderForFile(xpiFile);
  4463.       }
  4464.       catch (e) {
  4465.         LOG("installMultiXPI: failed to open xpi file: " + xpiFile.path);
  4466.         throw e;
  4467.       }
  4468.  
  4469.       var searchForEntries = ["*.xpi", "*.jar"];
  4470.       var files = [];
  4471.       for (var i = 0; i < searchForEntries.length; ++i) {
  4472.         var entries = zipReader.findEntries(searchForEntries[i]);
  4473.         while (entries.hasMore()) {
  4474.           var entryName = entries.getNext();
  4475.           var target = getFile(KEY_TEMPDIR, [entryName]);
  4476.           try {
  4477.             target.createUnique(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  4478.           }
  4479.           catch (e) {
  4480.             LOG("installMultiXPI: failed to create target file for extraction " +
  4481.                 " file = " + target.path + ", exception = " + e + "\n");
  4482.           }
  4483.           zipReader.extract(entryName, target);
  4484.           files.push(target);
  4485.         }
  4486.       }
  4487.       zipReader.close();
  4488.  
  4489.       if (files.length == 0) {
  4490.         LOG("Multiple Item Package: Item: \"" + fileURL.fileName + "\" does " +
  4491.             "not contain a valid package to install.");
  4492.         var bundle = BundleManager.getBundle(URI_EXTENSIONS_PROPERTIES);
  4493.         showMessage("missingPackageFilesTitle",
  4494.                     [bundle.GetStringFromName("type-" + installData.type)],
  4495.                     "missingPackageFilesMessage", [installData.name,
  4496.                     bundle.GetStringFromName("type-" + installData.type)]);
  4497.         return;
  4498.       }
  4499.  
  4500.       for (i = 0; i < files.length; ++i) {
  4501.         em.installItemFromFileInternal(files[i], aInstallLocationKey, null);
  4502.         files[i].remove(false);
  4503.       }
  4504.     }
  4505.  
  4506.     /**
  4507.      * An observer for the Extension Update System.
  4508.      * @constructor
  4509.      */
  4510.     function IncompatibleObserver() {}
  4511.     IncompatibleObserver.prototype = {
  4512.       _id: null,
  4513.       _type: nsIUpdateItem.TYPE_ANY,
  4514.       _xpi: null,
  4515.       _installManifest: null,
  4516.       _installRDF: null,
  4517.       
  4518.       /** 
  4519.        * Ask the Extension Update System if there are any version updates for
  4520.        * this item that will allow it to be compatible with this version of 
  4521.        * the Application.
  4522.        * @param   installManifest 
  4523.        *          The Install Manifest datasource for the item.
  4524.        * @param   installData
  4525.        *          The Install Data object for the item.
  4526.        * @param   xpiFile         
  4527.        *          The staged source XPI file that contains the item. Cleaned 
  4528.        *          up by this process.
  4529.        */
  4530.       checkForUpdates: function(installManifest, installData, xpiFile, installRDF) {
  4531.         this._id              = installData.id;
  4532.         this._type            = installData.type;
  4533.         this._xpi             = xpiFile;
  4534.         this._installManifest = installManifest;
  4535.         this._installRDF      = installRDF;
  4536.         
  4537.         var item = makeItem(installData.id, installData.version, 
  4538.                             aInstallLocationKey, 
  4539.                             installData.currentApp.minVersion, 
  4540.                             installData.currentApp.maxVersion,
  4541.                             installData.name,
  4542.                             "", /* XPI Update URL */
  4543.                             "", /* XPI Update Hash */
  4544.                             "", /* Icon URL */
  4545.                             installData.updateURL || "", 
  4546.                             installData.type);
  4547.         em.update([item], 1, nsIExtensionManager.UPDATE_CHECK_COMPATIBILITY, this);
  4548.       },
  4549.       
  4550.       /**
  4551.        * See nsIExtensionManager.idl
  4552.        */
  4553.       onUpdateStarted: function() {
  4554.         LOG("Phone Home Listener: Update Started");
  4555.       },
  4556.       
  4557.       /**
  4558.        * See nsIExtensionManager.idl
  4559.        */
  4560.       onUpdateEnded: function() {
  4561.         LOG("Phone Home Listener: Update Ended");
  4562.         // We are responsible for cleaning up this file!
  4563.         this._installRDF.remove(false);
  4564.       },
  4565.       
  4566.       /**
  4567.        * See nsIExtensionManager.idl
  4568.        */
  4569.       onAddonUpdateStarted: function(addon) {
  4570.         LOG("Phone Home Listener: Update For " + addon.id + " started");
  4571.         em.datasource.addIncompatibleUpdateItem(addon.name, this._xpi.path,
  4572.                                                 addon.type, addon.version);
  4573.       },
  4574.       
  4575.       /**
  4576.        * See nsIExtensionManager.idl
  4577.        */
  4578.       onAddonUpdateEnded: function(addon, status) {
  4579.         LOG("Phone Home Listener: Update For " + addon.id + " ended, status = " + status); 
  4580.         em.datasource.removeDownload(this._xpi.path);
  4581.         LOG("Version Check Phone Home Completed");
  4582.         // Only compatibility updates (e.g. STATUS_VERSIONINFO) are currently
  4583.         // supported
  4584.         if (status == nsIAddonUpdateCheckListener.STATUS_VERSIONINFO) {
  4585.           em.datasource.setTargetApplicationInfo(addon.id, 
  4586.                                                  addon.minAppVersion,
  4587.                                                  addon.maxAppVersion, 
  4588.                                                  this._installManifest);
  4589.  
  4590.           // Try and install again, but use the updated compatibility DB
  4591.           em.installItemFromFileInternal(this._xpi, aInstallLocationKey, 
  4592.                                          this._installManifest);
  4593.  
  4594.           // Add the updated compatibility info to the datasource if done
  4595.           if (StartupCache.entries[aInstallLocationKey][addon.id].op == OP_NONE) {
  4596.             em.datasource.updateTargetAppInfo(addon.id, addon.minAppVersion,
  4597.                                               addon.maxAppVersion);
  4598.           }
  4599.           else { // needs a restart
  4600.             // Add updatedMinVersion and updatedMaxVersion so it can be used
  4601.             // to update the data sources during the installation or upgrade.
  4602.             em.datasource.setUpdatedTargetAppInfo(addon.id, addon.minAppVersion,
  4603.                                                   addon.maxAppVersion);
  4604.           }
  4605.           // Prevent the datasource file from being lazily recreated after
  4606.           // it is deleted by calling Flush.
  4607.           this._installManifest.QueryInterface(Components.interfaces.nsIRDFRemoteDataSource);
  4608.           this._installManifest.Flush();
  4609.         }
  4610.         else {
  4611.           em.datasource.removeDownload(this._xpi.path);
  4612.           showIncompatibleError(installData);
  4613.           // We are responsible for cleaning up this file!
  4614.           InstallLocations.get(aInstallLocationKey).removeFile(this._xpi);
  4615.         }
  4616.       },
  4617.  
  4618.       /**
  4619.        * See nsISupports.idl
  4620.        */
  4621.       QueryInterface: function(iid) {
  4622.         if (!iid.equals(Components.interfaces.nsIAddonUpdateCheckListener) &&
  4623.             !iid.equals(Components.interfaces.nsISupports))
  4624.           throw Components.results.NS_ERROR_NO_INTERFACE;
  4625.         return this;
  4626.       }
  4627.     }
  4628.  
  4629.     var installManifestFile = extractRDFFileToTempDir(aXPIFile, FILE_INSTALL_MANIFEST, true);
  4630.     var shouldPhoneHomeIfNecessary = false;
  4631.     if (!aInstallManifest) {
  4632.       // If we were not called with an Install Manifest, we were called from 
  4633.       // some other path than the Phone Home system, so we do want to phone
  4634.       // home if the version is incompatible.
  4635.       shouldPhoneHomeIfNecessary = true;
  4636.       var installManifest = getInstallManifest(installManifestFile);
  4637.       if (!installManifest) {
  4638.         LOG("The Install Manifest supplied by this item is not well-formed. " + 
  4639.             "Installation will not proceed.");
  4640.         installManifestFile.remove(false);
  4641.         return;
  4642.       }
  4643.     }
  4644.     else
  4645.       installManifest = aInstallManifest;
  4646.     
  4647.     var installData = this._getInstallData(installManifest);
  4648.     switch (installData.error) {
  4649.     case INSTALLERROR_INCOMPATIBLE_VERSION:
  4650.       // Since the caller cleans up |aXPIFile|, and we're not yet sure whether or
  4651.       // not we need it (we may need it if a remote version bump that makes it 
  4652.       // compatible is discovered by the call home) - so we must stage it for 
  4653.       // later ourselves.
  4654.       if (shouldPhoneHomeIfNecessary && installData.currentApp) {
  4655.         var installLocation = getInstallLocation(installData.id, aInstallLocationKey);
  4656.         if (!installLocation) {
  4657.           installManifestFile.remove(false);
  4658.           return;
  4659.         }
  4660.         var stagedFile = installLocation.stageFile(aXPIFile, installData.id);
  4661.         (new IncompatibleObserver(this)).checkForUpdates(installManifest, 
  4662.                                                          installData, stagedFile,
  4663.                                                          installManifestFile);
  4664.         // Return early to prevent deletion of the install manifest file.
  4665.         return;
  4666.       }
  4667.       else {
  4668.         // XXXben Look up XULRunnerSettingsThingy to see if there is a registered
  4669.         //        app that can handle this item, if so just stage and don't show
  4670.         //        this error!
  4671.         showIncompatibleError(installData);
  4672.       }
  4673.       break;
  4674.     case INSTALLERROR_SUCCESS:
  4675.       // Installation of multiple extensions / themes contained within a single xpi.
  4676.       if (installData.type == nsIUpdateItem.TYPE_MULTI_XPI) {
  4677.         installMultiXPI(aXPIFile, installData);
  4678.         break;
  4679.       }
  4680.  
  4681.       // Stage the extension's XPI so it can be extracted at the next restart.
  4682.       var installLocation = getInstallLocation(installData.id, aInstallLocationKey);
  4683.       if (!installLocation) {
  4684.         // No cleanup of any of the staged XPI files should be required here, 
  4685.         // because this should only ever fail on the first recurse through
  4686.         // this function, BEFORE staging takes place... technically speaking
  4687.         // a location could become readonly during the phone home process, 
  4688.         // but that's an edge case I don't care about.
  4689.         installManifestFile.remove(false);
  4690.         return;
  4691.       }
  4692.  
  4693.       // Stage a copy of the XPI/JAR file for our own evil purposes...
  4694.       stagedFile = installLocation.stageFile(aXPIFile, installData.id);
  4695.       
  4696.       var restartRequired = this.installRequiresRestart(installData.id, 
  4697.                                                         installData.type);
  4698.       // Determine which configuration function to use based on whether or not
  4699.       // there is data about this item in our datasource already - if there is 
  4700.       // we want to upgrade, otherwise we install fresh.
  4701.       var ds = this.datasource;
  4702.       if (installData.id in ds.visibleItems && ds.visibleItems[installData.id]) {
  4703.         // We enter this function if any data corresponding to an existing GUID
  4704.         // is found, regardless of its Install Location. We need to check before
  4705.         // "upgrading" an item that Install Location of the new item is of equal
  4706.         // or higher priority than the old item, to make sure the datasource only
  4707.         // ever tracks metadata for active items.
  4708.         var oldInstallLocation = this.getInstallLocation(installData.id);
  4709.         if (oldInstallLocation.priority >= installLocation.priority) {
  4710.           this._upgradeItem(installManifest, installData.id, installLocation, 
  4711.                             installData.type);
  4712.           if (!restartRequired) {
  4713.             this._finalizeUpgrade(installData.id);
  4714.             this._finalizeInstall(installData.id, stagedFile);
  4715.           }
  4716.         }
  4717.       }
  4718.       else {
  4719.         this._configureForthcomingItem(installManifest, installData.id, 
  4720.                                         installLocation, installData.type);
  4721.         if (!restartRequired)
  4722.           this._finalizeInstall(installData.id, stagedFile);
  4723.       }
  4724.       this._updateManifests(restartRequired);
  4725.       break;
  4726.     case INSTALLERROR_INVALID_GUID:
  4727.       LOG("Invalid GUID: Item has GUID: \"" + installData.id + "\"" + 
  4728.           " which is not well-formed.");
  4729.       var bundle = BundleManager.getBundle(URI_EXTENSIONS_PROPERTIES);
  4730.       showMessage("incompatibleTitle", 
  4731.                   [bundle.GetStringFromName("type-" + installData.type)], 
  4732.                   "invalidGUIDMessage", [installData.name, installData.id]);
  4733.       break;
  4734.     case INSTALLERROR_INVALID_VERSION:
  4735.       LOG("Invalid Version: Item: \"" + installData.id + "\" has version " + 
  4736.           installData.version + " which is not well-formed.");
  4737.       var bundle = BundleManager.getBundle(URI_EXTENSIONS_PROPERTIES);
  4738.       showMessage("incompatibleTitle", 
  4739.                   [bundle.GetStringFromName("type-" + installData.type)], 
  4740.                   "invalidVersionMessage", [installData.name, installData.version]);
  4741.       break;
  4742.     case INSTALLERROR_INCOMPATIBLE_PLATFORM:
  4743.       const osABI = gOSTarget + "_" + gXPCOMABI;
  4744.       LOG("Incompatible Platform: Item: \"" + installData.id + "\" is not " + 
  4745.           "compatible with '" + osABI + "'.");
  4746.       var bundle = BundleManager.getBundle(URI_EXTENSIONS_PROPERTIES);
  4747.       showMessage("incompatibleTitle", 
  4748.                   [bundle.GetStringFromName("type-" + installData.type)], 
  4749.                   "incompatiblePlatformMessage",
  4750.                   [installData.name, BundleManager.appName, osABI]);
  4751.       break;
  4752.     case INSTALLERROR_BLOCKLISTED:
  4753.       LOG("Blocklisted Item: Item: \"" + installData.id + "\" version " + 
  4754.           installData.version + " was not installed.");
  4755.       showBlocklistMessage([installData], true);
  4756.       break;
  4757.     default:
  4758.       break;
  4759.     }
  4760.     
  4761.     // Check to see if this item supports other applications and in that case
  4762.     // stage the the XPI file in the location specified by those applications.
  4763.     stageXPIForOtherApps(aXPIFile, installData);
  4764.  
  4765.     installManifestFile.remove(false);
  4766.   },
  4767.   
  4768.   /**
  4769.    * Whether or not this type's installation/uninstallation requires 
  4770.    * the application to be restarted.
  4771.    * @param   id
  4772.    *          The GUID of the item
  4773.    * @param   type
  4774.    *          The nsIUpdateItem type of the item
  4775.    * @returns true if installation of an item of this type requires a 
  4776.    *          restart.
  4777.    */
  4778.   installRequiresRestart: function(id, type) {
  4779.     switch (type) {
  4780.     case nsIUpdateItem.TYPE_THEME:
  4781.       var internalName = this.datasource.getItemProperty(id, "internalName");
  4782.       var needsRestart = false;
  4783.       if (gPref.prefHasUserValue(PREF_DSS_SKIN_TO_SELECT))
  4784.         needsRestart = internalName == gPref.getCharPref(PREF_DSS_SKIN_TO_SELECT);
  4785.       if (!needsRestart &&
  4786.           gPref.prefHasUserValue(PREF_GENERAL_SKINS_SELECTEDSKIN))
  4787.         needsRestart = internalName == gPref.getCharPref(PREF_GENERAL_SKINS_SELECTEDSKIN);
  4788.       return needsRestart;
  4789.     }
  4790.     return true;
  4791.   },
  4792.   
  4793.   /**
  4794.    * Perform initial configuration on an item that has just or will be 
  4795.    * installed. This inserts the item into the appropriate container in the
  4796.    * datasource, so that the application UI shows the item even if it will
  4797.    * not actually be installed until the next restart.
  4798.    * @param   installManifest 
  4799.    *          The Install Manifest datasource that describes this item.
  4800.    * @param   id          
  4801.    *          The GUID of this item.
  4802.    * @param   installLocation
  4803.    *          The Install Location where this item is installed.
  4804.    * @param   type
  4805.    *          The nsIUpdateItem type of this item. 
  4806.    */  
  4807.   _configureForthcomingItem: function(installManifest, id, installLocation, type) {
  4808.     var ds = this.datasource;
  4809.     ds.updateVisibleList(id, installLocation.name, false);
  4810.     
  4811.     var name = null;
  4812.     var localizationProp = EM_R("localized");
  4813.     var localeProp = EM_R("locale");
  4814.     var localizations = installManifest.GetTargets(gInstallManifestRoot, localizationProp, true);
  4815.     while (localizations.hasMoreElements()) {
  4816.       var localization = localizations.getNext().QueryInterface(Components.interfaces.nsIRDFNode);
  4817.       var locales = installManifest.GetTargets(localization, localeProp, true);
  4818.       while (locales.hasMoreElements()) {
  4819.         var locale = locales.getNext().QueryInterface(Components.interfaces.nsIRDFNode);
  4820.         if (stringData(locale) == gLocale)
  4821.           name = installManifest.GetTarget(localization, EM_R("name"), true);
  4822.       }
  4823.     }
  4824.     if (!name)
  4825.       name = EM_L(getManifestProperty(installManifest, "name"));
  4826.  
  4827.     var props = { name            : name,
  4828.                   version         : EM_L(getManifestProperty(installManifest, "version")),
  4829.                   newVersion      : EM_L(getManifestProperty(installManifest, "version")),
  4830.                   installLocation : EM_L(installLocation.name),
  4831.                   type            : EM_I(type),
  4832.                   availableUpdateURL    : null,
  4833.                   availableUpdateHash   : null,
  4834.                   availableUpdateVersion: null };
  4835.     for (var p in props)
  4836.       ds.setItemProperty(id, EM_R(p), props[p]);
  4837.     ds.updateProperty(id, "availableUpdateURL");
  4838.     
  4839.     this._setOp(id, OP_NEEDS_INSTALL);
  4840.     
  4841.     // Insert it into the child list NOW rather than later because:
  4842.     // - extensions installed using the command line need to be a member
  4843.     //   of a container during the install phase for the code to be able
  4844.     //   to identify profile vs. global
  4845.     // - extensions installed through the UI should show some kind of
  4846.     //   feedback to indicate their presence is forthcoming (i.e. they
  4847.     //   will be available after a restart).
  4848.     ds.insertItemIntoContainer(id);
  4849.     
  4850.     this._notifyAction(id, EM_ITEM_INSTALLED);
  4851.   },
  4852.   
  4853.   /**
  4854.    * Perform configuration on an item that has just or will be upgraded.
  4855.    * @param   installManifest
  4856.    *          The Install Manifest datasource that describes this item.
  4857.    * @param   itemID
  4858.    *          The GUID of this item.
  4859.    * @param   installLocation
  4860.    *          The Install Location where this item is installed.
  4861.    * @param   type
  4862.    *          The nsIUpdateItem type of this item. 
  4863.    */
  4864.   _upgradeItem: function (installManifest, id, installLocation, type) {
  4865.     // Don't change any props that would need to be reset if the install fails.
  4866.     // They will be reset as appropriate by the upgrade/install process.
  4867.     var ds = this.datasource;
  4868.     ds.updateVisibleList(id, installLocation.name, false);
  4869.     var props = { installLocation : EM_L(installLocation.name),
  4870.                   type            : EM_I(type),
  4871.                   newVersion      : EM_L(getManifestProperty(installManifest, "version")),
  4872.                   availableUpdateURL      : null,
  4873.                   availableUpdateHash     : null,
  4874.                   availableUpdateVersion  : null };
  4875.     for (var p in props)
  4876.       ds.setItemProperty(id, EM_R(p), props[p]);
  4877.     ds.updateProperty(id, "availableUpdateURL");
  4878.  
  4879.     this._setOp(id, OP_NEEDS_UPGRADE);
  4880.     this._notifyAction(id, EM_ITEM_UPGRADED);
  4881.   },
  4882.  
  4883.   /** 
  4884.    * Completes an Extension's installation.
  4885.    * @param   id
  4886.    *          The GUID of the Extension to install.
  4887.    * @param   file
  4888.    *          The XPI/JAR file to install from. If this is null, we try to
  4889.    *          determine the stage file location from the ID.
  4890.    */
  4891.   _finalizeInstall: function(id, file) {
  4892.     var ds = this.datasource;
  4893.     var type = ds.getItemProperty(id, "type");
  4894.     if (id == 0 || id == -1) {
  4895.       ds.removeCorruptItem(id, type);
  4896.       return;
  4897.     }
  4898.     var installLocation = this.getInstallLocation(id);
  4899.     if (!installLocation) {
  4900.       // If the install location is null, that means we've reached the finalize
  4901.       // state without the item ever having metadata added for it, which implies
  4902.       // bogus data in the Startup Cache. Clear the entries and don't do anything
  4903.       // else.
  4904.       var entries = StartupCache.findEntries(id);
  4905.       for (var i = 0; i < entries.length; ++i) {
  4906.         var location = InstallLocations.get(entries[i].location);
  4907.         StartupCache.clearEntry(location, id);
  4908.         PendingOperations.clearItem(OP_NEEDS_INSTALL, id);
  4909.       }
  4910.       return;
  4911.     }
  4912.     var itemLocation = installLocation.getItemLocation(id);
  4913.  
  4914.     if (!file && "stageFile" in installLocation)
  4915.       file = installLocation.getStageFile(id);
  4916.     
  4917.     // If |file| is null or does not exist, the installer assumes the item is
  4918.     // a dropped-in directory.
  4919.     var installer = new Installer(this.datasource, id, installLocation, type);
  4920.     installer.installFromFile(file);
  4921.  
  4922.     // If the file was staged, we must clean it up ourselves, otherwise the 
  4923.     // EM caller is responsible for doing so (e.g. XPInstall)
  4924.     if (file)
  4925.       installLocation.removeFile(file);
  4926.     
  4927.     // Clear the op flag from the Startup Cache and Pending Operations sets
  4928.     StartupCache.put(installLocation, id, OP_NONE, true);
  4929.     PendingOperations.clearItem(OP_NEEDS_INSTALL, id);
  4930.   },
  4931.  
  4932.   /**
  4933.    * Removes an item's metadata in preparation for an upgrade-install.
  4934.    * @param   id
  4935.    *          The GUID of the item to uninstall.
  4936.    */
  4937.   _finalizeUpgrade: function(id) {
  4938.     // Retrieve the item properties *BEFORE* we clean the resource!
  4939.     var ds = this.datasource;
  4940.     var installLocation = this.getInstallLocation(id);
  4941.  
  4942.     var stagedFile = null;
  4943.     if ("getStageFile" in installLocation)
  4944.       stagedFile = installLocation.getStageFile(id);
  4945.  
  4946.     if (stagedFile)
  4947.       var installRDF = extractRDFFileToTempDir(stagedFile, FILE_INSTALL_MANIFEST, true);
  4948.     else
  4949.       installRDF = installLocation.getItemFile(id, FILE_INSTALL_MANIFEST);
  4950.     if (installRDF.exists()) {
  4951.       var installManifest = getInstallManifest(installRDF);
  4952.       if (installManifest) {
  4953.         var type = getAddonTypeFromInstallManifest(installManifest);
  4954.         var userDisabled = ds.getItemProperty(id, "userDisabled") == "true";
  4955.  
  4956.         // Clean the item resource
  4957.         ds.removeItemMetadata(id);
  4958.         // Now set up the properties on the item to mimic an item in its
  4959.         // "initial state" for installation.
  4960.         this._configureForthcomingItem(installManifest, id, installLocation, 
  4961.                                        type);
  4962.         if (userDisabled)
  4963.           ds.setItemProperty(id, EM_R("userDisabled"), EM_L("true"));
  4964.       }
  4965.       if (stagedFile)
  4966.         installRDF.remove(false);
  4967.     }
  4968.     // Clear the op flag from the Pending Operations set. Do NOT clear op flag in 
  4969.     // the startup cache since this may have been reset to OP_NEEDS_INSTALL by
  4970.     // |_configureForthcomingItem|.
  4971.     PendingOperations.clearItem(OP_NEEDS_UPGRADE, id);
  4972.   },
  4973.   
  4974.   /**
  4975.    * Completes an item's uninstallation.
  4976.    * @param   id
  4977.    *          The GUID of the item to uninstall.
  4978.    */
  4979.   _finalizeUninstall: function(id) {
  4980.     var ds = this.datasource;
  4981.     
  4982.     var installLocation = this.getInstallLocation(id);
  4983.     if (!installLocation.itemIsManagedIndependently(id)) {
  4984.       try {
  4985.         // Having a callback that does nothing just causes the directory to be
  4986.         // removed.
  4987.         safeInstallOperation(id, installLocation, 
  4988.                              { data: null, callback: function() { } });
  4989.       }
  4990.       catch (e) {
  4991.         LOG("_finalizeUninstall: failed to remove directory for item: " + id + 
  4992.             " at Install Location: " + installLocation.name + ", rolling back uninstall");
  4993.         // Removal of the files failed, reset the uninstalled flag and rewrite
  4994.         // the install manifests so this item's components are registered.
  4995.         // Clear the op flag from the Startup Cache
  4996.         StartupCache.put(installLocation, id, OP_NONE, true);
  4997.         var restartRequired = this.installRequiresRestart(id, ds.getItemProperty(id, "type"))
  4998.         this._updateManifests(restartRequired);
  4999.         return;
  5000.       }
  5001.     }
  5002.     else if (installLocation.name == KEY_APP_PROFILE ||
  5003.              installLocation.name == KEY_APP_GLOBAL) {
  5004.       // Check for a pointer file and remove it if it exists
  5005.       var pointerFile = installLocation.location.clone();
  5006.       pointerFile.append(id);
  5007.       if (pointerFile.exists() && !pointerFile.isDirectory())
  5008.         pointerFile.remove(false);
  5009.     }
  5010.     
  5011.     // Clean the item resource
  5012.     ds.removeItemMetadata(id);
  5013.     
  5014.     // Do this LAST since inferences are made about an item based on
  5015.     // what container it's in.
  5016.     ds.removeItemFromContainer(id);
  5017.     
  5018.     // Clear the op flag from the Startup Cache and the Pending Operations set.
  5019.     StartupCache.clearEntry(installLocation, id);
  5020.     PendingOperations.clearItem(OP_NEEDS_UNINSTALL, id);
  5021.   },
  5022.   
  5023.   /**
  5024.    * Uninstalls an item. If the uninstallation cannot be performed immediately
  5025.    * it is scheduled for the next restart.
  5026.    * @param   id
  5027.    *          The GUID of the item to uninstall.
  5028.    */
  5029.   uninstallItem: function(id) {
  5030.     var ds = this.datasource;
  5031.     ds.updateDownloadState(PREFIX_ITEM_URI + id, null);
  5032.     if (!ds.isDownloadItem(id)) {
  5033.       var opType = ds.getItemProperty(id, "opType");
  5034.       var installLocation = this.getInstallLocation(id);
  5035.       // Removes any staged xpis for this item.
  5036.       if (opType == OP_NEEDS_UPGRADE || opType == OP_NEEDS_INSTALL) {
  5037.         var stageFile = installLocation.getStageFile(id);
  5038.         if (stageFile)
  5039.           installLocation.removeFile(stageFile);
  5040.       }
  5041.       // Addons with an opType of OP_NEEDS_INSTALL only have a staged xpi file
  5042.       // and are removed immediately since the uninstall can't be canceled.
  5043.       if (opType == OP_NEEDS_INSTALL) {
  5044.         ds.removeItemMetadata(id);
  5045.         ds.removeItemFromContainer(id);
  5046.         ds.updateVisibleList(id, null, true);
  5047.         StartupCache.clearEntry(installLocation, id);
  5048.         this._updateManifests(false);
  5049.       }
  5050.       else {
  5051.         this._setOp(id, OP_NEEDS_UNINSTALL);
  5052.         var type = ds.getItemProperty(id, "type");
  5053.         var restartRequired = this.installRequiresRestart(id, type);
  5054.         if (!restartRequired) {
  5055.           this._finalizeUninstall(id);
  5056.           this._updateManifests(restartRequired);
  5057.         }
  5058.       }
  5059.     }
  5060.     else {
  5061.       // Bad download entry - uri is url, e.g. "http://www.foo.com/test.xpi"
  5062.       // ... just remove it from the list. 
  5063.       ds.removeCorruptDLItem(id);
  5064.     }
  5065.     
  5066.     this._notifyAction(id, EM_ITEM_UNINSTALLED);
  5067.   },
  5068.  
  5069.   /**
  5070.    * Cancels a pending uninstall of an item
  5071.    * @param   id
  5072.    *          The ID of the item.
  5073.    */
  5074.   cancelUninstallItem: function(id) {
  5075.     var ds = this.datasource;
  5076.     var appDisabled = ds.getItemProperty(id, "appDisabled");
  5077.     var userDisabled = ds.getItemProperty(id, "userDisabled");
  5078.     if (appDisabled == "true" || appDisabled == OP_NONE && userDisabled == OP_NONE) {
  5079.       this._setOp(id, OP_NONE);
  5080.       this._notifyAction(id, EM_ITEM_CANCEL);
  5081.     }
  5082.     else if (appDisabled == OP_NEEDS_DISABLE || userDisabled == OP_NEEDS_DISABLE) {
  5083.       this._setOp(id, OP_NEEDS_DISABLE);
  5084.       this._notifyAction(id, EM_ITEM_DISABLED);
  5085.     }
  5086.     else if (appDisabled == OP_NEEDS_ENABLE || userDisabled == OP_NEEDS_ENABLE) {
  5087.       this._setOp(id, OP_NEEDS_ENABLE);
  5088.       this._notifyAction(id, EM_ITEM_ENABLED);
  5089.     }
  5090.     else {
  5091.       this._setOp(id, OP_NONE);
  5092.       this._notifyAction(id, EM_ITEM_CANCEL);
  5093.     }
  5094.   },
  5095.  
  5096.   /**
  5097.    * Sets the pending operation for a visible item. 
  5098.    * @param   id
  5099.    *          The GUID of the item
  5100.    * @param   op
  5101.    *          The name of the operation to be performed
  5102.    */  
  5103.   _setOp: function(id, op) {
  5104.     var location = this.getInstallLocation(id);
  5105.     StartupCache.put(location, id, op, true);
  5106.     PendingOperations.addItem(op, { locationKey: location.name, id: id });
  5107.     var ds = this.datasource;
  5108.     if (op == OP_NEEDS_INSTALL || op == OP_NEEDS_UPGRADE)
  5109.       ds.updateDownloadState(PREFIX_ITEM_URI + id, "success");
  5110.  
  5111.     ds.updateProperty(id, "opType");
  5112.     ds.updateProperty(id, "updateable");
  5113.     ds.updateProperty(id, "satisfiesDependencies");
  5114.     var restartRequired = this.installRequiresRestart(id, ds.getItemProperty(id, "type"))
  5115.     this._updateDependentItemsForID(id);
  5116.     this._updateManifests(restartRequired);
  5117.   },
  5118.   
  5119.   /**
  5120.    * Note on appDisabled and userDisabled property arcs.
  5121.    * The appDisabled and userDisabled RDF property arcs are used to store
  5122.    * the pending operation for app disabling and user disabling for an item as
  5123.    * well as the user and app disabled status after the pending operation has
  5124.    * been completed upon restart. When the appDisabled value changes the value
  5125.    * of userDisabled is reset to prevent the state of widgets and status
  5126.    * messages from being in an incorrect state.
  5127.    */
  5128.  
  5129.   /**
  5130.    * Enables an item for the application (e.g. the item satisfies all
  5131.    * requirements like app compatibility for it to be enabled). The appDisabled
  5132.    * property arc will be removed if the item will be app disabled on next
  5133.    * restart to cancel the app disabled operation for the item otherwise the
  5134.    * property value will be set to OP_NEEDS_ENABLE. The item's pending
  5135.    * operations are then evaluated in order to set the operation to perform
  5136.    * and notify the observers if the operation has been changed.
  5137.    * See "Note on appDisabled and userDisabled property arcs" above.
  5138.    * @param   id
  5139.    *          The ID of the item to be enabled by the application.
  5140.    */
  5141.   _appEnableItem: function(id) {
  5142.     var ds = this.datasource;
  5143.     var appDisabled = ds.getItemProperty(id, "appDisabled");
  5144.     if (appDisabled == OP_NONE || appDisabled == OP_NEEDS_ENABLE)
  5145.       return;
  5146.  
  5147.     var opType = ds.getItemProperty(id, "opType");
  5148.     var userDisabled = ds.getItemProperty(id, "userDisabled");
  5149.     // reset user disabled if it has a pending operation to prevent the ui
  5150.     // state from getting confused as to an item's current state.
  5151.     if (userDisabled == OP_NEEDS_DISABLE)
  5152.       ds.setItemProperty(id, EM_R("userDisabled"), null);
  5153.     else if (userDisabled == OP_NEEDS_ENABLE)
  5154.       ds.setItemProperty(id, EM_R("userDisabled"), EM_L("true"));
  5155.  
  5156.     if (appDisabled == OP_NEEDS_DISABLE)
  5157.       ds.setItemProperty(id, EM_R("appDisabled"), null);
  5158.     else if (appDisabled == "true")
  5159.       ds.setItemProperty(id, EM_R("appDisabled"), EM_L(OP_NEEDS_ENABLE));
  5160.  
  5161.     // Don't set a new operation when there is a pending uninstall operation.
  5162.     if (opType == OP_NEEDS_UNINSTALL) {
  5163.       this._updateDependentItemsForID(id);
  5164.       return;
  5165.     }
  5166.  
  5167.     var operation, action;
  5168.     // if this item is already enabled or user disabled don't set a pending
  5169.     // operation - instead immediately enable it and reset the operation type
  5170.     // if needed.
  5171.     if (appDisabled == OP_NEEDS_DISABLE || appDisabled == OP_NONE ||
  5172.         userDisabled == "true") {
  5173.       if (opType != OP_NONE) {
  5174.         operation = OP_NONE;
  5175.         action = EM_ITEM_CANCEL;
  5176.       }
  5177.     }
  5178.     else {
  5179.       if (opType != OP_NEEDS_ENABLE) {
  5180.         operation = OP_NEEDS_ENABLE;
  5181.         action = EM_ITEM_ENABLED;
  5182.       }
  5183.     }
  5184.  
  5185.     if (action) {
  5186.       this._setOp(id, operation);
  5187.       this._notifyAction(id, action);
  5188.     }
  5189.     else {
  5190.       ds.updateProperty(id, "satisfiesDependencies");
  5191.       this._updateDependentItemsForID(id);
  5192.     }
  5193.   },
  5194.  
  5195.   /**
  5196.    * Disables an item for the application (e.g. the item doesn't satisfy all
  5197.    * requirements like app compatibility for it to be enabled). The appDisabled
  5198.    * property arc will be set to true if the item will be app enabled on next
  5199.    * restart to cancel the app enabled operation for the item otherwise the
  5200.    * property value will be set to OP_NEEDS_DISABLE. The item's pending
  5201.    * operations are then evaluated in order to set the operation to perform
  5202.    * and notify the observers if the operation has been changed.
  5203.    * See "Note on appDisabled and userDisabled property arcs" above.
  5204.    * @param   id
  5205.    *          The ID of the item to be disabled by the application.
  5206.    */
  5207.   _appDisableItem: function(id) {
  5208.     var ds = this.datasource;
  5209.     var appDisabled = ds.getItemProperty(id, "appDisabled");
  5210.     if (appDisabled == "true" || appDisabled == OP_NEEDS_DISABLE)
  5211.       return;
  5212.  
  5213.     var opType = ds.getItemProperty(id, "opType");
  5214.     var userDisabled = ds.getItemProperty(id, "userDisabled");
  5215.  
  5216.     // reset user disabled if it has a pending operation to prevent the ui
  5217.     // state from getting confused as to an item's current state.
  5218.     if (userDisabled == OP_NEEDS_DISABLE)
  5219.       ds.setItemProperty(id, EM_R("userDisabled"), null);
  5220.     else if (userDisabled == OP_NEEDS_ENABLE)
  5221.       ds.setItemProperty(id, EM_R("userDisabled"), EM_L("true"));
  5222.  
  5223.     if (appDisabled == OP_NEEDS_ENABLE || userDisabled == OP_NEEDS_ENABLE ||
  5224.         ds.getItemProperty(id, "userDisabled") == "true")
  5225.       ds.setItemProperty(id, EM_R("appDisabled"), EM_L("true"));
  5226.     else if (appDisabled == OP_NONE)
  5227.       ds.setItemProperty(id, EM_R("appDisabled"), EM_L(OP_NEEDS_DISABLE));
  5228.  
  5229.     // Don't set a new operation when there is a pending uninstall operation.
  5230.     if (opType == OP_NEEDS_UNINSTALL) {
  5231.       this._updateDependentItemsForID(id);
  5232.       return;
  5233.     }
  5234.  
  5235.     var operation, action;
  5236.     // if this item is already disabled don't set a pending operation - instead
  5237.     // immediately disable it and reset the operation type if needed.
  5238.     if (appDisabled == OP_NEEDS_ENABLE || appDisabled == "true" ||
  5239.         userDisabled == OP_NEEDS_ENABLE || userDisabled == "true") {
  5240.       if (opType != OP_NONE) {
  5241.         operation = OP_NONE;
  5242.         action = EM_ITEM_CANCEL;
  5243.       }
  5244.     }
  5245.     else {
  5246.       if (opType != OP_NEEDS_DISABLE) {
  5247.         operation = OP_NEEDS_DISABLE;
  5248.         action = EM_ITEM_DISABLED;
  5249.       }
  5250.     }
  5251.  
  5252.     if (action) {
  5253.       this._setOp(id, operation);
  5254.       this._notifyAction(id, action);
  5255.     }
  5256.     else {
  5257.       ds.updateProperty(id, "satisfiesDependencies");
  5258.       this._updateDependentItemsForID(id);
  5259.     }
  5260.   },
  5261.     
  5262.   /**
  5263.    * Sets an item to be enabled by the user. If the item is already enabled this
  5264.    * clears the needs-enable operation for the next restart.
  5265.    * See "Note on appDisabled and userDisabled property arcs" above.
  5266.    * @param   id
  5267.    *          The ID of the item to be enabled by the user.
  5268.    */
  5269.   enableItem: function(id) {
  5270.     var ds = this.datasource;
  5271.     var opType = ds.getItemProperty(id, "opType");
  5272.     var appDisabled = ds.getItemProperty(id, "appDisabled");
  5273.     var userDisabled = ds.getItemProperty(id, "userDisabled");
  5274.  
  5275.     var operation, action;
  5276.     // if this item is already enabled don't set a pending operation - instead
  5277.     // immediately enable it and reset the operation type if needed.
  5278.     if (appDisabled == OP_NONE &&
  5279.         userDisabled == OP_NEEDS_DISABLE || userDisabled == OP_NONE) {
  5280.       if (userDisabled == OP_NEEDS_DISABLE)
  5281.         ds.setItemProperty(id, EM_R("userDisabled"), null);
  5282.       if (opType != OP_NONE) {
  5283.         operation = OP_NONE;
  5284.         action = EM_ITEM_CANCEL;
  5285.       }
  5286.     }
  5287.     else {
  5288.       if (userDisabled == "true")
  5289.         ds.setItemProperty(id, EM_R("userDisabled"), EM_L(OP_NEEDS_ENABLE));
  5290.       if (opType != OP_NEEDS_ENABLE) {
  5291.         operation = OP_NEEDS_ENABLE;
  5292.         action = EM_ITEM_ENABLED;
  5293.       }
  5294.     }
  5295.  
  5296.     if (action) {
  5297.       this._setOp(id, operation);
  5298.       this._notifyAction(id, action);
  5299.     }
  5300.     else {
  5301.       ds.updateProperty(id, "satisfiesDependencies");
  5302.       this._updateDependentItemsForID(id);
  5303.     }
  5304.   },
  5305.   
  5306.   /**
  5307.    * Sets an item to be disabled by the user. If the item is already disabled
  5308.    * this clears the needs-disable operation for the next restart.
  5309.    * See "Note on appDisabled and userDisabled property arcs" above.
  5310.    * @param   id
  5311.    *          The ID of the item to be disabled by the user.
  5312.    */
  5313.   disableItem: function(id) {
  5314.     var ds = this.datasource;
  5315.     var opType = ds.getItemProperty(id, "opType");
  5316.     var appDisabled = ds.getItemProperty(id, "appDisabled");
  5317.     var userDisabled = ds.getItemProperty(id, "userDisabled");
  5318.  
  5319.     var operation, action;
  5320.     // if this item is already disabled don't set a pending operation - instead
  5321.     // immediately disable it and reset the operation type if needed.
  5322.     if (userDisabled == OP_NEEDS_ENABLE || userDisabled == "true" ||
  5323.         appDisabled == OP_NEEDS_ENABLE) {
  5324.       if (userDisabled != "true")
  5325.         ds.setItemProperty(id, EM_R("userDisabled"), EM_L("true"));
  5326.       if (opType != OP_NONE) {
  5327.         operation = OP_NONE;
  5328.         action = EM_ITEM_CANCEL;
  5329.       }
  5330.     }
  5331.     else {
  5332.       if (userDisabled == OP_NONE)
  5333.         ds.setItemProperty(id, EM_R("userDisabled"), EM_L(OP_NEEDS_DISABLE));
  5334.       if (opType != OP_NEEDS_DISABLE) {
  5335.         operation = OP_NEEDS_DISABLE;
  5336.         action = EM_ITEM_DISABLED;
  5337.       }
  5338.     }
  5339.  
  5340.     if (action) {
  5341.       this._setOp(id, operation);
  5342.       this._notifyAction(id, action);
  5343.     }
  5344.     else {
  5345.       ds.updateProperty(id, "satisfiesDependencies");
  5346.       this._updateDependentItemsForID(id);
  5347.     }
  5348.   },
  5349.   
  5350.   /**
  5351.    * Determines whether an item should be disabled by the application.
  5352.    * @param   id
  5353.    *          The ID of the item to check
  5354.    */
  5355.   _isUsableItem: function(id) {
  5356.     var ds = this.datasource;
  5357.     return ((!gCheckCompatibility || ds.getItemProperty(id, "compatible") == "true") &&
  5358.             ds.getItemProperty(id, "blocklisted") == "false" &&
  5359.             ds.getItemProperty(id, "satisfiesDependencies") == "true");
  5360.   },
  5361.  
  5362.   /**
  5363.    * Sets an item's dependent items disabled state for the app based on whether
  5364.    * its dependencies are met and the item is compatible.
  5365.    * @param   id
  5366.    *          The ID of the item whose dependent items will be checked
  5367.    */
  5368.   _updateDependentItemsForID: function(id) {
  5369.     var ds = this.datasource;
  5370.     var dependentItems = this.getDependentItemListForID(id, true, { });
  5371.     for (var i = 0; i < dependentItems.length; ++i) {
  5372.       var dependentID = dependentItems[i].id;
  5373.       ds.updateProperty(dependentID, "satisfiesDependencies");
  5374.       if (this._isUsableItem(dependentID))
  5375.         this._appEnableItem(dependentID);
  5376.       else
  5377.         this._appDisableItem(dependentID);
  5378.     }
  5379.   },
  5380.  
  5381.   /**
  5382.    * Notify observers of a change to an item that has been requested by the
  5383.    * user. 
  5384.    */
  5385.   _notifyAction: function(id, reason) {
  5386.     gOS.notifyObservers(this.datasource.getItemForID(id), 
  5387.                         EM_ACTION_REQUESTED_TOPIC, reason);
  5388.   },
  5389.   
  5390.   /**
  5391.    * See nsIExtensionManager.idl
  5392.    */
  5393.   update: function(items, itemCount, updateCheckType, listener) {
  5394.     var appID = gApp.ID;
  5395.     var appVersion = gApp.version;
  5396.  
  5397.     if (items.length == 0)
  5398.       items = this.getItemList(nsIUpdateItem.TYPE_ADDON, { });
  5399.  
  5400.     var updater = new ExtensionItemUpdater(appID, appVersion, this);
  5401.     updater.checkForUpdates(items, items.length, updateCheckType, listener);
  5402.   },
  5403.  
  5404.  
  5405.   /**
  5406.    * Checks for changes to the blocklist using the local blocklist file,
  5407.    * application disables / enables items that have been added / removed from
  5408.    * the blocklist, and if there are additions to the blocklist this will
  5409.    * inform the user by displaying a list of the items added.
  5410.    *
  5411.    * XXXrstrong - this method is not terribly useful and was added so we can
  5412.    * trigger this check from the additional timer used by blocklisting.
  5413.    */
  5414.   checkForBlocklistChanges: function() {
  5415.     var ds = this.datasource;
  5416.     var items = this.getItemList(nsIUpdateItem.TYPE_ADDON, { });
  5417.     for (var i = 0; i < items.length; ++i) {
  5418.       var id = items[i].id;
  5419.       ds.updateProperty(id, "blocklisted");
  5420.       if (this._isUsableItem(id))
  5421.         this._appEnableItem(id);
  5422.     }
  5423.  
  5424.     items = ds.getBlocklistedItemList(null, null, nsIUpdateItem.TYPE_ADDON,
  5425.                                       false);
  5426.     for (i = 0; i < items.length; ++i)
  5427.       this._appDisableItem(items[i].id);
  5428.  
  5429.     // show the blocklist notification window if there are new blocklist items.
  5430.     if (items.length > 0)
  5431.       showBlocklistMessage(items, false);
  5432.   },
  5433.  
  5434.   /**
  5435.    * @returns An enumeration of all registered Install Locations.
  5436.    */
  5437.   get installLocations () {
  5438.     return InstallLocations.enumeration;
  5439.   },
  5440.   
  5441.   /**
  5442.    * Gets the Install Location where a visible Item is stored.
  5443.    * @param   id
  5444.    *          The GUID of the item to locate an Install Location for.
  5445.    * @returns The Install Location object where the item is stored.
  5446.    */
  5447.   getInstallLocation: function(id) {
  5448.     var key = this.datasource.visibleItems[id];
  5449.     return key ? InstallLocations.get(this.datasource.visibleItems[id]) : null;
  5450.   },
  5451.   
  5452.   /**
  5453.    * Gets a nsIUpdateItem for the item with the specified id.
  5454.    * @param   id
  5455.    *          The GUID of the item to construct a nsIUpdateItem for.
  5456.    * @returns The nsIUpdateItem representing the item.
  5457.    */
  5458.   getItemForID: function(id) {
  5459.     return this.datasource.getItemForID(id);
  5460.   },
  5461.   
  5462.   /**
  5463.    * Retrieves a list of installed nsIUpdateItems of items that are dependent
  5464.    * on another item.
  5465.    * @param   id
  5466.    *          The ID of the item that other items depend on.
  5467.    * @param   includeDisabled
  5468.    *          Whether to include disabled items in the set returned.
  5469.    * @param   countRef
  5470.    *          The XPCJS reference to the number of items returned.
  5471.    * @returns An array of installed nsIUpdateItems that depend on the item
  5472.    *          specified by the id parameter.
  5473.    */
  5474.   getDependentItemListForID: function(id, includeDisabled, countRef) {
  5475.     return this.datasource.getDependentItemListForID(id, includeDisabled, countRef);
  5476.   },
  5477.  
  5478.   /**
  5479.    * Retrieves a list of nsIUpdateItems of items matching the specified type.
  5480.    * @param   type
  5481.    *          The type of item to return.
  5482.    * @param   countRef
  5483.    *          The XPCJS reference to the number of items returned.
  5484.    * @returns An array of nsIUpdateItems matching the id/type filter.
  5485.    */
  5486.   getItemList: function(type, countRef) {
  5487.     return this.datasource.getItemList(type, countRef);
  5488.   },
  5489.  
  5490.   /**  
  5491.    * See nsIExtensionManager.idl
  5492.    */
  5493.   getIncompatibleItemList: function(id, version, type, includeDisabled, 
  5494.                                     countRef) {
  5495.     var items = this.datasource.getIncompatibleItemList(id, version ? version : undefined,
  5496.                                                         type, includeDisabled);
  5497.     countRef.value = items.length;
  5498.     return items;
  5499.   },
  5500.   
  5501.   /**
  5502.    * Move an Item to the index of another item in its container.
  5503.    * @param   movingID
  5504.    *          The ID of the item to be moved.
  5505.    * @param   destinationID
  5506.    *          The ID of an item to move another item to.
  5507.    */
  5508.   moveToIndexOf: function(movingID, destinationID) {
  5509.     this.datasource.moveToIndexOf(movingID, destinationID);
  5510.   },
  5511.  
  5512.   /**
  5513.    * Sorts addons of the specified type by the specified property starting from
  5514.    * the top of their container. If the addons are already sorted then no action
  5515.    * is performed.
  5516.    * @param   type
  5517.    *          The nsIUpdateItem type of the items to sort.
  5518.    * @param   propertyName
  5519.    *          The RDF property name used for sorting.
  5520.    * @param   isAscending
  5521.    *          true to sort ascending and false to sort descending
  5522.    */
  5523.   sortTypeByProperty: function(type, propertyName, isAscending) {
  5524.     this.datasource.sortTypeByProperty(type, propertyName, isAscending);
  5525.   },
  5526.  
  5527.   /////////////////////////////////////////////////////////////////////////////    
  5528.   // Downloads
  5529.   _transactions: [],
  5530.   _downloadCount: 0,
  5531.   
  5532.   /**
  5533.    * Ask the user if they really want to quit the application, since this will 
  5534.    * cancel one or more Extension/Theme downloads.
  5535.    * @param   subject
  5536.    *          A nsISupportsPRBool which this function sets to false if the user
  5537.    *          wishes to cancel all active downloads and quit the application,
  5538.    *          false otherwise.
  5539.    */
  5540.   _confirmCancelDownloadsOnQuit: function(subject) {
  5541.     if (this._downloadCount > 0) {
  5542.       // The observers will be notified again after this so set the download
  5543.       // count to 0 to prevent this dialog from being displayed again.
  5544.       this._downloadCount = 0;
  5545.       var result;
  5546. //@line 5477 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/extensions/src/nsExtensionManager.js.in"
  5547.       result = this._confirmCancelDownloads(this._downloadCount, 
  5548.                                             "quitCancelDownloadsAlertTitle",
  5549.                                             "quitCancelDownloadsAlertMsgMultiple",
  5550.                                             "quitCancelDownloadsAlertMsg",
  5551.                                             "dontQuitButtonWin");
  5552. //@line 5489 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/extensions/src/nsExtensionManager.js.in"
  5553.       if (!result)
  5554.         this._cancelDownloads();
  5555.       if (subject instanceof Components.interfaces.nsISupportsPRBool)
  5556.         subject.data = result;
  5557.     }
  5558.   },
  5559.   
  5560.   /**
  5561.    * Ask the user if they really want to go offline, since this will cancel 
  5562.    * one or more Extension/Theme downloads.
  5563.    * @param   subject
  5564.    *          A nsISupportsPRBool which this function sets to false if the user
  5565.    *          wishes to cancel all active downloads and go offline, false
  5566.    *          otherwise.
  5567.    */
  5568.   _confirmCancelDownloadsOnOffline: function(subject) {
  5569.     if (this._downloadCount > 0) {
  5570.       result = this._confirmCancelDownloads(this._downloadCount,
  5571.                                             "offlineCancelDownloadsAlertTitle",
  5572.                                             "offlineCancelDownloadsAlertMsgMultiple",
  5573.                                             "offlineCancelDownloadsAlertMsg",
  5574.                                             "dontGoOfflineButton");
  5575.       if (!result)
  5576.         this._cancelDownloads();
  5577.       if (subject instanceof Components.interfaces.nsISupportsPRBool)
  5578.         subject.data = result;
  5579.     }
  5580.   },
  5581.   
  5582.   /**
  5583.    * Cancels all active downloads and removes them from the applicable UI.
  5584.    */
  5585.   _cancelDownloads: function() {
  5586.     for (var i = 0; i < this._transactions.length; ++i)
  5587.       gOS.notifyObservers(this._transactions[i], "xpinstall-progress", "cancel");
  5588.  
  5589.     this._removeAllDownloads();
  5590.   },
  5591.  
  5592.   /**
  5593.    * Ask the user whether or not they wish to cancel the Extension/Theme
  5594.    * downloads which are currently under way.
  5595.    * @param   count
  5596.    *          The number of active downloads.
  5597.    * @param   title
  5598.    *          The key of the title for the message box to be displayed
  5599.    * @param   cancelMessageMultiple
  5600.    *          The key of the message to be displayed in the message box
  5601.    *          when there are > 1 active downloads.
  5602.    * @param   cancelMessageSingle
  5603.    *          The key of the message to be displayed in the message box
  5604.    *          when there is just one active download.
  5605.    * @param   dontCancelButton
  5606.    *          The key of the label to be displayed on the "Don't Cancel 
  5607.    *          Downloads" button.
  5608.    */
  5609.   _confirmCancelDownloads: function(count, title, cancelMessageMultiple, 
  5610.                                     cancelMessageSingle, dontCancelButton) {
  5611.     var bundle = BundleManager.getBundle(URI_DOWNLOADS_PROPERTIES);
  5612.     var title = bundle.GetStringFromName(title);
  5613.     var message, quitButton;
  5614.     if (count > 1) {
  5615.       message = bundle.formatStringFromName(cancelMessageMultiple, [count], 1);
  5616.       quitButton = bundle.formatStringFromName("cancelDownloadsOKTextMultiple", [count], 1);
  5617.     }
  5618.     else {
  5619.       message = bundle.GetStringFromName(cancelMessageSingle);
  5620.       quitButton = bundle.GetStringFromName("cancelDownloadsOKText");
  5621.     }
  5622.     var dontQuitButton = bundle.GetStringFromName(dontCancelButton);
  5623.     
  5624.     var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
  5625.                        .getService(Components.interfaces.nsIWindowMediator);
  5626.     var win = wm.getMostRecentWindow("Extension:Manager");
  5627.     const nsIPromptService = Components.interfaces.nsIPromptService;
  5628.     var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
  5629.                        .getService(nsIPromptService);
  5630.     var flags = (nsIPromptService.BUTTON_TITLE_IS_STRING * nsIPromptService.BUTTON_POS_0) +
  5631.                 (nsIPromptService.BUTTON_TITLE_IS_STRING * nsIPromptService.BUTTON_POS_1);
  5632.     var rv = ps.confirmEx(win, title, message, flags, quitButton, dontQuitButton, null, null, { });
  5633.     return rv == 1;
  5634.   },
  5635.   
  5636.   /** 
  5637.    * Adds a set of Item Downloads to the Manager and starts the download
  5638.    * operation.
  5639.    * @param   items
  5640.    *          An array of nsIUpdateItems to begin downlading.
  5641.    * @param   itemCount
  5642.    *          The length of |items|
  5643.    * @param   fromChrome
  5644.    *          true when called from chrome
  5645.    *          false when not called from chrome (e.g. web page)
  5646.    */
  5647.   addDownloads: function(items, itemCount, fromChrome) { 
  5648.     var ds = this.datasource;
  5649.     // Add observers only if they aren't already added for an active download
  5650.     if (this._downloadCount == 0) {
  5651.       gOS.addObserver(this, "offline-requested", false);
  5652.       gOS.addObserver(this, "quit-application-requested", false);
  5653.     }
  5654.     this._downloadCount += itemCount;
  5655.     
  5656.     var urls = [];
  5657.     var hashes = [];
  5658.     var txn = new ItemDownloadTransaction(this);
  5659.     for (var i = 0; i < itemCount; ++i) {
  5660.       var currItem = items[i];
  5661.       var txnID = Math.round(Math.random() * 100);
  5662.       txn.addDownload(currItem, txnID);
  5663.       this._transactions.push(txn);
  5664.       urls.push(currItem.xpiURL);
  5665.       hashes.push(currItem.xpiHash ? currItem.xpiHash : null);
  5666.       // if this is an update remove the update metadata to prevent it from
  5667.       // being updated during an install.
  5668.       if (fromChrome) {
  5669.         var id = currItem.id
  5670.         ds.setItemProperty(id, EM_R("availableUpdateURL"), null);
  5671.         ds.setItemProperty(id, EM_R("availableUpdateHash"), null);
  5672.         ds.setItemProperty(id, EM_R("availableUpdateVersion"), null);
  5673.         ds.updateProperty(id, "availableUpdateURL");
  5674.         ds.updateProperty(id, "updateable"); 
  5675.       }
  5676.       var id = fromChrome ? PREFIX_ITEM_URI + currItem.id : currItem.xpiURL;
  5677.       ds.updateDownloadState(id, "waiting");
  5678.     }
  5679.     
  5680.     if (fromChrome) {
  5681.       // Initiate an install from chrome
  5682.       var xpimgr = 
  5683.           Components.classes["@mozilla.org/xpinstall/install-manager;1"].
  5684.           createInstance(Components.interfaces.nsIXPInstallManager);
  5685.       xpimgr.initManagerWithHashes(urls, hashes, urls.length, txn);
  5686.     }
  5687.     else
  5688.       gOS.notifyObservers(txn, "xpinstall-progress", "open");
  5689.   },
  5690.   
  5691.   /**
  5692.    * Removes a download of a URL.
  5693.    * @param   url
  5694.    *          The URL of the item being downloaded to remove.
  5695.    */
  5696.   removeDownload: function(url) {
  5697.     for (var i = 0; i < this._transactions.length; ++i) {
  5698.       if (this._transactions[i].containsURL(url)) {
  5699.         this._transactions[i].removeDownload(url);
  5700.         return;
  5701.       }
  5702.     } 
  5703.   },
  5704.   
  5705.   /**
  5706.    * Remove all downloads from all transactions.
  5707.    */
  5708.   _removeAllDownloads: function() {
  5709.     for (var i = 0; i < this._transactions.length; ++i)
  5710.       this._transactions[i].removeAllDownloads();
  5711.   },
  5712.  
  5713.   /**
  5714.    * Download Operation State has changed from one to another. 
  5715.    * 
  5716.    * The nsIXPIProgressDialog implementation in the download transaction object
  5717.    * forwards notifications through these methods which we then pass on to any
  5718.    * front end objects implementing nsIExtensionDownloadListener that 
  5719.    * are listening. We maintain the master state of download operations HERE, 
  5720.    * not in the front end, because if the user closes the extension or theme 
  5721.    * managers during the downloads we need to maintain state and not terminate
  5722.    * the download/install process. 
  5723.    *
  5724.    * @param   transaction
  5725.    *          The ItemDownloadTransaction object receiving the download 
  5726.    *          notifications from XPInstall.
  5727.    * @param   addon
  5728.    *          An object representing nsIUpdateItem for the addon being updated
  5729.    * @param   state
  5730.    *          The state we are entering
  5731.    * @param   value
  5732.    *          ???
  5733.    */
  5734.   onStateChange: function(transaction, addon, state, value) {
  5735.     for (var i = 0; i < this._updateListeners.length; ++i)
  5736.       this._updateListeners[i].onStateChange(addon, state, value);
  5737.     var ds = this.datasource;
  5738.     var id = addon.id != addon.xpiURL ? PREFIX_ITEM_URI + addon.id : addon.xpiURL;
  5739.     const nsIXPIProgressDialog = Components.interfaces.nsIXPIProgressDialog;
  5740.     switch (state) {
  5741.     case nsIXPIProgressDialog.DOWNLOAD_START:
  5742.       ds.updateDownloadState(id, "downloading");
  5743.       break;
  5744.     case nsIXPIProgressDialog.INSTALL_START:
  5745.       ds.updateDownloadState(id, "finishing");
  5746.       ds.updateDownloadProgress(id, null);
  5747.       break;
  5748.     case nsIXPIProgressDialog.INSTALL_DONE:
  5749.       --this._downloadCount;
  5750.       // From nsInstall.h
  5751.       // SUCCESS        = 0
  5752.       // REBOOT_NEEDED  = 999
  5753.       // USER_CANCELLED = -210
  5754.       if (value != 0 && value != 999 && value != -210 && id != addon.xpiURL) {
  5755.         ds.updateDownloadState(id, "failure");
  5756.         ds.updateDownloadProgress(id, null);
  5757.       }
  5758.       this.removeDownload(addon.xpiURL);
  5759.       break;
  5760.     case nsIXPIProgressDialog.DIALOG_CLOSE:
  5761.       for (var i = 0; i < this._transactions.length; ++i) {
  5762.         if (this._transactions[i].id == transaction.id) {
  5763.           this._transactions.splice(i, 1);
  5764.           delete transaction;
  5765.           // Remove the observers when all transactions have completed.
  5766.           if (this._transactions.length == 0) {
  5767.             gOS.removeObserver(this, "offline-requested");
  5768.             gOS.removeObserver(this, "quit-application-requested");
  5769.           }
  5770.           break;
  5771.         }
  5772.       }
  5773.       break;
  5774.     }
  5775.   },
  5776.   
  5777.   onProgress: function(addon, value, maxValue) {
  5778.     for (var i = 0; i < this._updateListeners.length; ++i)
  5779.       this._updateListeners[i].onProgress(addon, value, maxValue);
  5780.     
  5781.     var id = addon.id != addon.xpiURL ? PREFIX_ITEM_URI + addon.id : addon.xpiURL;
  5782.     var progress = Math.round((value / maxValue) * 100);
  5783.     this.datasource.updateDownloadProgress(id, progress);
  5784.   },
  5785.  
  5786.   _updateListeners: [],
  5787.   addUpdateListener: function(listener) {
  5788.     for (var i = 0; i < this._updateListeners.length; ++i) {
  5789.       if (this._updateListeners[i] == listener)
  5790.         return i;
  5791.     }
  5792.     this._updateListeners.push(listener);
  5793.     return this._updateListeners.length - 1;
  5794.   },
  5795.   
  5796.   removeUpdateListenerAt: function(index) {
  5797.     this._updateListeners.splice(index, 1);
  5798.   },
  5799.  
  5800.   /**
  5801.    * The Extensions RDF Datasource
  5802.    */
  5803.   _ds: null,
  5804.   _ptr: null,
  5805.  
  5806.   /** 
  5807.    * Loads the Extensions Datasource. This should not be called unless: 
  5808.    * - a piece of Extensions UI is being shown, or
  5809.    * - on startup and there has been a change to an Install Location
  5810.    * ... it should NOT be called on every startup!
  5811.    */
  5812.   _ensureDS: function() {
  5813.     if (!this._ds) {
  5814.       this._ds = new ExtensionsDataSource(this);
  5815.       if (this._ds) {
  5816.         this._ds.loadExtensions();
  5817.         this._ptr = gRDF.GetDataSource("rdf:extensions");
  5818.         gRDF.RegisterDataSource(this._ptr, true);
  5819.       }
  5820.     }
  5821.   },
  5822.  
  5823.   /**
  5824.    * See nsIExtensionManager.idl
  5825.    */
  5826.   get datasource() {
  5827.     this._ensureDS();
  5828.     return this._ds.QueryInterface(Components.interfaces.nsIRDFDataSource);
  5829.   },
  5830.   
  5831.   /**
  5832.    * See nsIClassInfo.idl
  5833.    */
  5834.   getInterfaces: function(count) {
  5835.     var interfaces = [Components.interfaces.nsIExtensionManager,
  5836.                       Components.interfaces.nsIXPIProgressDialog,
  5837.                       Components.interfaces.nsIObserver];
  5838.     count.value = interfaces.length;
  5839.     return interfaces;
  5840.   },
  5841.   getHelperForLanguage: function(language) { 
  5842.     return null;
  5843.   },
  5844.   get contractID() {
  5845.     return "@mozilla.org/extensions/manager;1";
  5846.   },
  5847.   get classDescription() {
  5848.     return "Extension Manager";
  5849.   },
  5850.   get classID() {
  5851.     return Components.ID("{8A115FAA-7DCB-4e8f-979B-5F53472F51CF}");
  5852.   },
  5853.   get implementationLanguage() {
  5854.     return Components.interfaces.nsIProgrammingLanguage.JAVASCRIPT;
  5855.   },
  5856.   get flags() {
  5857.     return Components.interfaces.nsIClassInfo.SINGLETON;
  5858.   },
  5859.  
  5860.   /**
  5861.    * See nsISupports.idl
  5862.    */
  5863.   QueryInterface: function(iid) {
  5864.     if (!iid.equals(Components.interfaces.nsIExtensionManager) &&
  5865.         !iid.equals(Components.interfaces.nsITimerCallback) &&
  5866.         !iid.equals(Components.interfaces.nsIObserver) &&
  5867.         !iid.equals(Components.interfaces.nsISupports))
  5868.       throw Components.results.NS_ERROR_NO_INTERFACE;
  5869.     return this;
  5870.   }
  5871. };
  5872.  
  5873. /**
  5874.  * This object implements nsIXPIProgressDialog and represents a collection of
  5875.  * XPI/JAR download and install operations. There is one 
  5876.  * ItemDownloadTransaction per back-end XPInstallManager object. We maintain
  5877.  * a collection of separate transaction objects because it's possible to have
  5878.  * multiple separate XPInstall download/install operations going on 
  5879.  * simultaneously, each with its own XPInstallManager instance. For instance
  5880.  * you could start downloading two extensions and then download a theme. Each
  5881.  * of these operations would open the appropriate FE and have to be able to
  5882.  * track each operation independently.
  5883.  * 
  5884.  * @constructor
  5885.  */
  5886. function ItemDownloadTransaction(manager) {
  5887.   this._manager = manager;
  5888.   this._downloads = [];
  5889. }
  5890. ItemDownloadTransaction.prototype = {
  5891.   _manager    : null,
  5892.   _downloads  : [],
  5893.   id          : -1,
  5894.   
  5895.   /**
  5896.    * Add a download to this transaction
  5897.    * @param   addon
  5898.    *          An object implementing nsIUpdateItem for the item to be downloaded
  5899.    * @param   id
  5900.    *          The integer identifier of this transaction
  5901.    */
  5902.   addDownload: function(addon, id) {
  5903.     this._downloads.push({ addon: addon, waiting: true });
  5904.     this._manager.datasource.addDownload(addon);
  5905.     this.id = id;
  5906.   },
  5907.   
  5908.   /**
  5909.    * Removes a download from this transaction
  5910.    * @param   url
  5911.    *          The URL to remove
  5912.    */
  5913.   removeDownload: function(url) {
  5914.     this._manager.datasource.removeDownload(url);
  5915.   },
  5916.   
  5917.   /**
  5918.    * Remove all downloads from this transaction
  5919.    */
  5920.   removeAllDownloads: function() {
  5921.     for (var i = 0; i < this._downloads.length; ++i) {
  5922.       var addon = this._downloads[i].addon;
  5923.       this.removeDownload(addon.xpiURL);
  5924.     }
  5925.   },
  5926.   
  5927.   /**
  5928.    * Determine if this transaction is handling the download of a url.
  5929.    * @param   url
  5930.    *          The URL to look for
  5931.    * @returns true if this transaction is downloading the supplied url.
  5932.    */
  5933.   containsURL: function(url) {
  5934.     for (var i = 0; i < this._downloads.length; ++i) {
  5935.       if (this._downloads[i].addon.xpiURL == url)
  5936.         return true;
  5937.     }
  5938.     return false;
  5939.   },
  5940.  
  5941.   /**
  5942.    * See nsIXPIProgressDialog.idl
  5943.    */
  5944.   onStateChange: function(index, state, value) {
  5945.     this._manager.onStateChange(this, this._downloads[index].addon, 
  5946.                                 state, value);
  5947.   },
  5948.   
  5949.   /**
  5950.    * See nsIXPIProgressDialog.idl
  5951.    */
  5952.   onProgress: function(index, value, maxValue) { 
  5953.     this._manager.onProgress(this._downloads[index].addon, value, maxValue);
  5954.   },
  5955.   
  5956.   /////////////////////////////////////////////////////////////////////////////
  5957.   // nsISupports
  5958.   QueryInterface: function(iid) {
  5959.     if (!iid.equals(Components.interfaces.nsIXPIProgressDialog) &&
  5960.         !iid.equals(Components.interfaces.nsISupports))
  5961.       throw Components.results.NS_ERROR_NO_INTERFACE;
  5962.     return this;
  5963.   }
  5964. };
  5965.  
  5966. /**
  5967.  * A listener object to the update check process that routes notifications to
  5968.  * the right places and keeps the datasource up to date.
  5969.  */
  5970. function AddonUpdateCheckListener(listener, datasource) {
  5971.   this._listener = listener;
  5972.   this._ds = datasource;
  5973. }
  5974. AddonUpdateCheckListener.prototype = {
  5975.   _listener: null,
  5976.   _ds: null,
  5977.   
  5978.   onUpdateStarted: function() {
  5979.     if (this._listener)
  5980.       this._listener.onUpdateStarted();
  5981.     this._ds.onUpdateStarted();
  5982.   },
  5983.   
  5984.   onUpdateEnded: function() {
  5985.     if (this._listener)
  5986.       this._listener.onUpdateEnded();
  5987.     this._ds.onUpdateEnded();
  5988.   },
  5989.   
  5990.   onAddonUpdateStarted: function(addon) {
  5991.     if (this._listener)
  5992.       this._listener.onAddonUpdateStarted(addon);
  5993.     this._ds.onAddonUpdateStarted(addon);
  5994.   },
  5995.   
  5996.   onAddonUpdateEnded: function(addon, status) {
  5997.     if (this._listener)
  5998.       this._listener.onAddonUpdateEnded(addon, status);
  5999.     this._ds.onAddonUpdateEnded(addon, status);
  6000.   }
  6001. };
  6002.  
  6003. ///////////////////////////////////////////////////////////////////////////////
  6004. //
  6005. // ExtensionItemUpdater
  6006. //
  6007. function ExtensionItemUpdater(aTargetAppID, aTargetAppVersion, aEM) 
  6008. {
  6009.   this._appID = aTargetAppID;
  6010.   this._appVersion = aTargetAppVersion;
  6011.   this._emDS = aEM._ds;
  6012.   this._em = aEM;
  6013.  
  6014.   getVersionChecker();
  6015. }
  6016.  
  6017. ExtensionItemUpdater.prototype = {
  6018.   _appID              : "",
  6019.   _appVersion         : "",
  6020.   _emDS               : null,
  6021.   _em                 : null,
  6022.   _updateCheckType    : 0,
  6023.   _items              : [],
  6024.   _listener           : null,
  6025.   _background         : false,
  6026.   
  6027.   /////////////////////////////////////////////////////////////////////////////
  6028.   // ExtensionItemUpdater
  6029.   //
  6030.   // When we check for updates to an item, there are two pieces of information
  6031.   // that are returned - 1) info about the newest available version, if any,
  6032.   // and 2) info about the currently installed version. The latter is provided
  6033.   // primarily to inform the client of changes to the application compatibility 
  6034.   // metadata for the current item. Depending on the situation, either 2 or 
  6035.   // 1&2 may be what is required.
  6036.   //
  6037.   // Callers:
  6038.   //  1 - nsUpdateService.js, user event
  6039.   //      User clicked on the update icon to invoke an update check, 
  6040.   //      user clicked on an Extension/Theme and clicked "Update". In this
  6041.   //      case we want to update compatibility metadata about the installed
  6042.   //      version, and look for newer versions to offer. 
  6043.   //  2 - nsUpdateService.js, background event
  6044.   //      Timer fired, background update is being performed. In this case
  6045.   //      we also want to update compatibility metadata and look for newer
  6046.   //      versions.
  6047.   //  3 - Mismatch
  6048.   //      User upgraded to a newer version of the app, update compatibility
  6049.   //      metadata and look for newer versions.
  6050.   //  4 - Install Phone Home
  6051.   //      User installed an item that was deemed incompatible based only
  6052.   //      on the information provided in the item's install.rdf manifest, 
  6053.   //      we look ONLY for compatibility updates in this case to determine
  6054.   //      whether or not the item can be installed.
  6055.   //  
  6056.   checkForUpdates: function(aItems, aItemCount, aUpdateCheckType, 
  6057.                             aListener) {
  6058.     this._listener = new AddonUpdateCheckListener(aListener, this._emDS);
  6059.     if (this._listener)
  6060.       this._listener.onUpdateStarted();
  6061.     this._updateCheckType = aUpdateCheckType;
  6062.     this._items = aItems;
  6063.     this._responseCount = aItemCount;
  6064.     
  6065.     // This is the number of extensions/themes/etc that we found updates for.
  6066.     this._updateCount = 0;
  6067.  
  6068.     for (var i = 0; i < aItemCount; ++i) {
  6069.       var e = this._items[i];
  6070.       if (this._listener)
  6071.         this._listener.onAddonUpdateStarted(e);
  6072.       (new RDFItemUpdater(this)).checkForUpdates(e, aUpdateCheckType);
  6073.     }
  6074.   },
  6075.   
  6076.   /////////////////////////////////////////////////////////////////////////////
  6077.   // ExtensionItemUpdater
  6078.   _applyVersionUpdates: function(aLocalItem, aRemoteItem) {
  6079.     var targetAppInfo = this._emDS.getTargetApplicationInfo(aLocalItem.id, this._emDS);
  6080.     // If targetAppInfo is null this is for a new install. If the local item's
  6081.     // maxVersion does not equal the targetAppInfo maxVersion then this is for
  6082.     // an upgrade. In both of these cases return true if the remotely specified
  6083.     // maxVersion is greater than the local item's maxVersion.
  6084.     if (!targetAppInfo ||
  6085.         gVersionChecker.compare(aLocalItem.maxAppVersion, targetAppInfo.maxVersion) != 0) {
  6086.       if (gVersionChecker.compare(aLocalItem.maxAppVersion, aRemoteItem.maxAppVersion) < 0)
  6087.         return true;
  6088.       else
  6089.         return false;
  6090.     }
  6091.  
  6092.     if (gVersionChecker.compare(targetAppInfo.maxVersion, aRemoteItem.maxAppVersion) < 0) {
  6093.       // Remotely specified maxVersion is newer than the maxVersion 
  6094.       // for the installed Extension. Apply that change to the datasources.
  6095.       this._emDS.updateTargetAppInfo(aLocalItem.id, aRemoteItem.minAppVersion,
  6096.                                      aRemoteItem.maxAppVersion);
  6097.  
  6098.       // If we got here through |checkForMismatches|, this extension has
  6099.       // already been disabled, re-enable it.
  6100.       var op = StartupCache.entries[aLocalItem.installLocationKey][aLocalItem.id].op;
  6101.       if (op == OP_NEEDS_DISABLE ||
  6102.           this._emDS.getItemProperty(aLocalItem.id, "appDisabled") == "true")
  6103.         this._em._appEnableItem(aLocalItem.id);
  6104.       return true;
  6105.     }
  6106.     else if (this._updateCheckType == nsIExtensionManager.UPDATE_SYNC_COMPATIBILITY)
  6107.       this._emDS.updateTargetAppInfo(aLocalItem.id, aRemoteItem.minAppVersion,
  6108.                                      aRemoteItem.maxAppVersion);
  6109.     return false;
  6110.   },
  6111.   
  6112.   /**
  6113.    * Checks whether a discovered update is valid for install
  6114.    * @param   aLocalItem
  6115.    *          The already installed nsIUpdateItem that the update is for
  6116.    * @param   aVersion
  6117.    *          The updated version of the add-on
  6118.    * @param   aMinAppVersion
  6119.    *          The minimum application version that the update supports
  6120.    * @param   aMaxApVersion
  6121.    *          The maximum application version that the update supports
  6122.    */
  6123.   _isValidUpdate: function(aLocalItem, aVersion, aMinAppVersion, aMaxAppVersion) {
  6124.     var appExtensionsVersion = gApp.version;
  6125.  
  6126.     // Check if the update will only run on a newer version of Firefox. 
  6127.     if (aMinAppVersion && 
  6128.         gVersionChecker.compare(appExtensionsVersion, aMinAppVersion) < 0) 
  6129.       return false;
  6130.  
  6131.     // Check if the update will only run on an older version of Firefox. 
  6132.     if (aMaxAppVersion && 
  6133.         gVersionChecker.compare(appExtensionsVersion, aMaxAppVersion) > 0) 
  6134.       return false;
  6135.  
  6136.     if (this._emDS.isBlocklisted(aLocalItem.id, aVersion,
  6137.                                  undefined, undefined))
  6138.       return false;
  6139.     
  6140.     return true;
  6141.   },
  6142.   
  6143.   checkForDone: function(item, status) {
  6144.     if (this._background &&
  6145.         status == nsIAddonUpdateCheckListener.STATUS_UPDATE) {
  6146.       var lastupdate = this._emDS.getItemProperty(item.id, "availableUpdateVersion");
  6147.       if (lastupdate != item.version)
  6148.         gPref.setBoolPref(PREF_UPDATE_NOTIFYUSER, true);
  6149.     }
  6150.     if (this._listener) {
  6151.       try {
  6152.         this._listener.onAddonUpdateEnded(item, status);
  6153.       }
  6154.       catch (e) {
  6155.         LOG("ExtensionItemUpdater:checkForDone: Failure in listener's onAddonUpdateEnded: " + e);
  6156.       }
  6157.     }
  6158.     if (--this._responseCount == 0 && this._listener) {
  6159.       try {
  6160.         this._listener.onUpdateEnded();
  6161.       }
  6162.       catch (e) {
  6163.         LOG("ExtensionItemUpdater:checkForDone: Failure in listener's onUpdateEnded: " + e);
  6164.       }
  6165.     }
  6166.   },
  6167. };
  6168.  
  6169. function RDFItemUpdater(aUpdater) {
  6170.   this._updater = aUpdater;
  6171. }
  6172.  
  6173. RDFItemUpdater.prototype = {
  6174.   _updater            : null,
  6175.   _updateCheckType    : 0,
  6176.   _item               : null,
  6177.   
  6178.   checkForUpdates: function(aItem, aUpdateCheckType) {
  6179.     // A preference setting can disable updating for this item
  6180.     try {
  6181.       if (!gPref.getBoolPref(PREF_EM_ITEM_UPDATE_ENABLED.replace(/%UUID%/, aItem.id))) {
  6182.         var status = nsIAddonUpdateCheckListener.STATUS_DISABLED;
  6183.         this._updater.checkForDone(aItem, status);
  6184.         return;
  6185.       }
  6186.     }
  6187.     catch (e) { }
  6188.  
  6189.     // Items managed by the app are not checked for updates.
  6190.     var emDS = this._updater._emDS;
  6191.     if (emDS.getItemProperty(aItem.id, "appManaged") == "true") {
  6192.       var status = nsIAddonUpdateCheckListener.STATUS_APP_MANAGED;
  6193.       this._updater.checkForDone(aItem, status);
  6194.       return;
  6195.     }
  6196.  
  6197.     // Items that have a pending install, uninstall, or upgrade are not checked
  6198.     // for updates.
  6199.     var opType = emDS.getItemProperty(aItem.id, "opType");
  6200.     if (opType == OP_NEEDS_INSTALL || opType == OP_NEEDS_UNINSTALL ||
  6201.         opType == OP_NEEDS_UPGRADE) {
  6202.       var status = nsIAddonUpdateCheckListener.STATUS_PENDING_OP;
  6203.       this._updater.checkForDone(aItem, status);
  6204.       return;
  6205.     }
  6206.  
  6207.     var installLocation = InstallLocations.get(emDS.getInstallLocationKey(aItem.id));
  6208.     // Don't check items for updates that are installed in a location that is
  6209.     // not managed by the app.
  6210.     if (installLocation && (installLocation.name == "winreg-app-global" ||
  6211.         installLocation.name == "winreg-app-user")) {
  6212.       var status = nsIAddonUpdateCheckListener.STATUS_NOT_MANAGED;
  6213.       this._updater.checkForDone(aItem, status);
  6214.       return;
  6215.     }
  6216.  
  6217.     // Don't check items for updates if the location can't be written to except
  6218.     // when performing a version only update.
  6219.     if ((aUpdateCheckType == nsIExtensionManager.UPDATE_CHECK_NEWVERSION) && 
  6220.         (!installLocation || !installLocation.canAccess)) {
  6221.       var status = nsIAddonUpdateCheckListener.STATUS_READ_ONLY;
  6222.       this._updater.checkForDone(aItem, status);
  6223.       return;
  6224.     }
  6225.  
  6226.     this._updateCheckType = aUpdateCheckType;
  6227.     this._item = aItem;
  6228.   
  6229.     var itemStatus;
  6230.     if (emDS.getItemProperty(aItem.id, "userDisabled") == "true" ||
  6231.         emDS.getItemProperty(aItem.id, "userDisabled") == OP_NEEDS_ENABLE)
  6232.       itemStatus = "userDisabled";
  6233.     else
  6234.       itemStatus = "userEnabled";
  6235.     
  6236.     if (emDS.getItemProperty(aItem.id, "compatible") == "false")
  6237.       itemStatus += ",incompatible";
  6238.     if (emDS.getItemProperty(aItem.id, "blocklisted") == "true")
  6239.       itemStatus += ",blocklisted";
  6240.     if (emDS.getItemProperty(aItem.id, "satisfiesDependencies") == "false")
  6241.       itemStatus += ",needsDependencies";
  6242.  
  6243.     // Look for a custom update URI: 1) supplied by a pref, 2) supplied by the
  6244.     // install manifest, 3) the default configuration
  6245.     try {
  6246.       var dsURI = gPref.getComplexValue(PREF_EM_ITEM_UPDATE_URL.replace(/%UUID%/, aItem.id),
  6247.                                         Components.interfaces.nsIPrefLocalizedString).data;
  6248.     }
  6249.     catch (e) { }
  6250.     if (!dsURI)
  6251.       dsURI = aItem.updateRDF;
  6252.     if (!dsURI) {
  6253.       dsURI = gPref.getComplexValue(PREF_UPDATE_DEFAULT_URL,
  6254.                                     Components.interfaces.nsIPrefLocalizedString).data;
  6255.     }
  6256.     dsURI = dsURI.replace(/%ITEM_ID%/g, aItem.id);
  6257.     dsURI = dsURI.replace(/%ITEM_VERSION%/g, aItem.version);
  6258.     dsURI = dsURI.replace(/%ITEM_MAXAPPVERSION%/g, aItem.maxAppVersion);
  6259.     dsURI = dsURI.replace(/%ITEM_STATUS%/g, itemStatus);
  6260.     dsURI = dsURI.replace(/%APP_ID%/g, this._updater._appID);
  6261.     dsURI = dsURI.replace(/%APP_VERSION%/g, this._updater._appVersion);
  6262.     dsURI = dsURI.replace(/%REQ_VERSION%/g, 1);
  6263.     dsURI = dsURI.replace(/%APP_OS%/g, gOSTarget);
  6264.     dsURI = dsURI.replace(/%APP_ABI%/g, gXPCOMABI);
  6265.     
  6266.     // escape() does not properly encode + symbols in any embedded FVF strings.
  6267.     dsURI = dsURI.replace(/\+/g, "%2B");
  6268.  
  6269.     // Verify that the URI provided is valid
  6270.     try {
  6271.       var uri = newURI(dsURI);
  6272.     }
  6273.     catch (e) {
  6274.       LOG("RDFItemUpdater:checkForUpdates: There was an error loading the \r\n" + 
  6275.           " update datasource for: " + dsURI + ", item = " + aItem.id + ", error: " + e);
  6276.       this._updater.checkForDone(aItem, 
  6277.                                  nsIAddonUpdateCheckListener.STATUS_FAILURE);
  6278.       return;
  6279.     }
  6280.  
  6281.     LOG("RDFItemUpdater:checkForUpdates sending a request to server for: " + 
  6282.         uri.spec + ", item = " + aItem.objectSource);        
  6283.  
  6284.     var request = Components.classes["@mozilla.org/xmlextras/xmlhttprequest;1"]
  6285.                             .createInstance(Components.interfaces.nsIXMLHttpRequest);
  6286.     request.open("GET", uri.spec, true);
  6287.     request.channel.notificationCallbacks = new BadCertHandler();
  6288.     request.overrideMimeType("text/xml");
  6289.     request.channel.loadFlags |= Components.interfaces.nsIRequest.LOAD_BYPASS_CACHE;
  6290.  
  6291.     var self = this;
  6292.     request.onerror     = function(event) { self.onXMLError(event, aItem);    };
  6293.     request.onload      = function(event) { self.onXMLLoad(event, aItem);     };
  6294.     request.send(null);
  6295.   },
  6296.  
  6297.   onXMLLoad: function(aEvent, aItem) {
  6298.     var request = aEvent.target;
  6299.     try {
  6300.       checkCert(request.channel);
  6301.     }
  6302.     catch (e) {
  6303.       // This may be overly restrictive in two cases: corporate installations
  6304.       // with a corporate update server using an in-house CA cert (installed
  6305.       // but not "built-in") and lone developers hosting their updates on a
  6306.       // site with a self-signed cert (permanently accepted, otherwise the
  6307.       // BadCertHandler would prevent getting this far). Update checks will
  6308.       // fail in both these scenarios.
  6309.       // How else can we protect the vast majority of updates served from AMO
  6310.       // from the spoofing attack described in bug 340198 while allowing those
  6311.       // other cases? A "hackme" pref? Domain-control certs are cheap, getting
  6312.       // one should not be a barrier in either case.
  6313.       LOG("RDFItemUpdater::onXMLLoad: " + e);
  6314.       this._updater.checkForDone(aItem,
  6315.                                  nsIAddonUpdateCheckListener.STATUS_FAILURE);
  6316.       return;
  6317.     }
  6318.     var responseXML = request.responseXML;
  6319.  
  6320.     // If the item does not have an update RDF and returns an error it is not
  6321.     // treated as a failure since all items without an updateURL are checked
  6322.     // for updates on AMO even if they are not hosted there.
  6323.     if (!responseXML || responseXML.documentElement.namespaceURI == XMLURI_PARSE_ERROR ||
  6324.         (request.status != 200 && request.status != 0)) {
  6325.       this._updater.checkForDone(aItem, (aItem.updateRDF ? nsIAddonUpdateCheckListener.STATUS_FAILURE :
  6326.                                                            nsIAddonUpdateCheckListener.STATUS_NONE));
  6327.       return;
  6328.     }
  6329.  
  6330.     var rdfParser = Components.classes["@mozilla.org/rdf/xml-parser;1"]
  6331.                               .createInstance(Components.interfaces.nsIRDFXMLParser)
  6332.     var ds = Components.classes["@mozilla.org/rdf/datasource;1?name=in-memory-datasource"]
  6333.                        .createInstance(Components.interfaces.nsIRDFDataSource);
  6334.     rdfParser.parseString(ds, request.channel.URI, request.responseText);
  6335.  
  6336.     this.onDatasourceLoaded(ds, aItem);
  6337.   },
  6338.  
  6339.   onXMLError: function(aEvent, aItem) {
  6340.     try {
  6341.       var request = aEvent.target;
  6342.       // the following may throw (e.g. a local file or timeout)
  6343.       var status = request.status;
  6344.     }
  6345.     catch (e) {
  6346.       request = aEvent.target.channel.QueryInterface(Components.interfaces.nsIRequest);
  6347.       status = request.status;
  6348.     }
  6349.     // this can fail when a network connection is not present.
  6350.     try {
  6351.       var statusText = request.statusText;
  6352.     }
  6353.     catch (e) {
  6354.       status = 0;
  6355.     }
  6356.     // When status is 0 we don't have a valid channel.
  6357.     if (status == 0)
  6358.       statusText = "nsIXMLHttpRequest channel unavailable";
  6359.  
  6360.     LOG("RDFItemUpdater:onError: There was an error loading the \r\n" + 
  6361.         "the update datasource for item " + aItem.id + ", error: " + statusText);
  6362.     this._updater.checkForDone(aItem, 
  6363.                                nsIAddonUpdateCheckListener.STATUS_FAILURE);
  6364.   },
  6365.  
  6366.   onDatasourceLoaded: function(aDatasource, aLocalItem) {
  6367.     ///////////////////////////////////////////////////////////////////////////    
  6368.     // The extension update RDF file looks something like this:
  6369.     //
  6370.     //  <RDF:Description about="urn:mozilla:extension:{GUID}">
  6371.     //    <em:updates>
  6372.     //      <RDF:Seq>
  6373.     //        <RDF:li resource="urn:mozilla:extension:{GUID}:4.9"/>
  6374.     //        <RDF:li resource="urn:mozilla:extension:{GUID}:5.0"/>
  6375.     //      </RDF:Seq>
  6376.     //    </em:updates>
  6377.     //    <!-- the version of the extension being offered -->
  6378.     //    <em:version>5.0</em:version>
  6379.     //    <em:updateLink>http://www.mysite.com/myext-50.xpi</em:updateLink>
  6380.     //  </RDF:Description>
  6381.     //
  6382.     //  <RDF:Description about="urn:mozilla:extension:{GUID}:4.9">
  6383.     //    <em:version>4.9</em:version>
  6384.     //    <em:targetApplication>
  6385.     //      <RDF:Description>
  6386.     //        <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
  6387.     //        <em:minVersion>0.9</em:minVersion>
  6388.     //        <em:maxVersion>1.0</em:maxVersion>
  6389.     //        <em:updateLink>http://www.mysite.com/myext-49.xpi</em:updateLink>
  6390.     //      </RDF:Description>
  6391.     //    </em:targetApplication>
  6392.     //  </RDF:Description>  
  6393.     //
  6394.     // If we get here because the following happened:
  6395.     // 1) User was using Firefox 0.9 with ExtensionX 0.5 (minVersion 0.8, 
  6396.     //    maxVersion 0.9 for Firefox)
  6397.     // 2) User upgraded Firefox to 1.0
  6398.     // 3) |checkForMismatches| deems ExtensionX 0.5 incompatible with this
  6399.     //    new version of Firefox on the basis of its maxVersion
  6400.     // 4) ** We reach this point **
  6401.     //
  6402.     // If the version of ExtensionX (0.5) matches that provided by the 
  6403.     // server, then this is a cue that the author updated the rdf file
  6404.     // or central repository to say "0.5 is ALSO compatible with Firefox 1.0,
  6405.     // no changes are necessary." In this event, the local metadata for
  6406.     // installed ExtensionX (0.5) is freshened with the new maxVersion, 
  6407.     // and we advance to the next item WITHOUT any download/install 
  6408.     // updates.
  6409.     if (!aDatasource.GetAllResources().hasMoreElements()) {
  6410.       LOG("RDFItemUpdater:onDatasourceLoaded: Datasource empty.\r\n" + 
  6411.           "If you are an Extension developer and were expecting there to be\r\n" + 
  6412.           "updates, this could mean any number of things, since the RDF system\r\n" + 
  6413.           "doesn't give up much in the way of information when the load fails.\r\n" + 
  6414.           "\r\nTry checking that: \r\n" + 
  6415.           " 1. Your remote RDF file exists at the location.\r\n" + 
  6416.           " 2. Your RDF file is valid XML (starts with <?xml version=\"1.0?\">\r\n" + 
  6417.           "    and loads in Firefox displaying pretty printed like other XML documents\r\n" + 
  6418.           " 3. Your server is sending the data in the correct MIME\r\n" + 
  6419.           "    type (text/xml)");
  6420.     }      
  6421.     
  6422.   
  6423.     // Parse the response RDF
  6424.     function UpdateData() {}; 
  6425.     UpdateData.prototype = { version: "0.0", updateLink: null, updateHash: null,
  6426.                              minVersion: "0.0", maxVersion: "0.0", found: false };
  6427.     
  6428.     var versionUpdate = new UpdateData();
  6429.     var newestUpdate  = new UpdateData();
  6430.  
  6431.     var newerItem, sameItem;
  6432.     
  6433.     // Firefox 1.0PR+ update.rdf format
  6434.     if (this._updateCheckType == nsIExtensionManager.UPDATE_CHECK_NEWVERSION) {
  6435.       // Look for newer versions of this item, we only do this in "normal" 
  6436.       // mode... see comment by ExtensionItemUpdater_checkForUpdates 
  6437.       // about how we do this in all cases but Install Phone Home - which 
  6438.       // only needs to do a version check.
  6439.       this._parseV20UpdateInfo(aDatasource, aLocalItem, newestUpdate,
  6440.                                nsIExtensionManager.UPDATE_CHECK_NEWVERSION);
  6441.  
  6442.       if (newestUpdate.found) {
  6443.         newerItem = makeItem(aLocalItem.id, 
  6444.                              newestUpdate.version, 
  6445.                              aLocalItem.installLocationKey,
  6446.                              newestUpdate.minVersion, 
  6447.                              newestUpdate.maxVersion, 
  6448.                              aLocalItem.name, 
  6449.                              newestUpdate.updateLink,
  6450.                              newestUpdate.updateHash,
  6451.                              "", /* Icon URL */
  6452.                              "", /* RDF Update URL */
  6453.                              aLocalItem.type);
  6454.         ++this._updater._updateCount;
  6455.       }
  6456.     }
  6457.     
  6458.     // Now look for updated version compatibility metadata for the currently
  6459.     // installed version...
  6460.     this._parseV20UpdateInfo(aDatasource, aLocalItem, versionUpdate,
  6461.                              nsIExtensionManager.UPDATE_CHECK_COMPATIBILITY);
  6462.  
  6463.     if (versionUpdate.found) {
  6464.       // Local version exactly matches the "Version Update" remote version, 
  6465.       // Apply changes into local datasource.
  6466.       sameItem = makeItem(aLocalItem.id, 
  6467.                           versionUpdate.version, 
  6468.                           aLocalItem.installLocationKey,
  6469.                           versionUpdate.minVersion, 
  6470.                           versionUpdate.maxVersion, 
  6471.                           aLocalItem.name,
  6472.                           "", /* XPI Update URL */
  6473.                           "", /* XPI Update Hash */
  6474.                           "", /* Icon URL */
  6475.                           "", /* RDF Update URL */
  6476.                           aLocalItem.type);
  6477.       // Install-time updates are not written to the DS because there is no
  6478.       // entry yet, EM just uses the notifications to ascertain (by hand)
  6479.       // whether or not there is a remote maxVersion tweak that makes the 
  6480.       // item being installed compatible.
  6481.       if (!this._updater._applyVersionUpdates(aLocalItem, sameItem))
  6482.         sameItem = null;
  6483.     }
  6484.     
  6485.     if (newerItem) {
  6486.       LOG("RDFItemUpdater:onDatasourceLoaded: Found a newer version of this item:\r\n" + 
  6487.           newerItem.objectSource);
  6488.     }
  6489.     if (sameItem) {
  6490.       LOG("RDFItemUpdater:onDatasourceLoaded: Found info about the installed\r\n" + 
  6491.           "version of this item: " + sameItem.objectSource);
  6492.     }
  6493.     var item = null, status = nsIAddonUpdateCheckListener.STATUS_NONE;
  6494.     if (this._updateCheckType == nsIExtensionManager.UPDATE_CHECK_NEWVERSION
  6495.         && newerItem) {
  6496.       item = newerItem;
  6497.       status = nsIAddonUpdateCheckListener.STATUS_UPDATE;
  6498.     }
  6499.     else if (sameItem) {
  6500.       item = sameItem;
  6501.       status = nsIAddonUpdateCheckListener.STATUS_VERSIONINFO;
  6502.     }
  6503.     else {
  6504.       item = aLocalItem;
  6505.       status = nsIAddonUpdateCheckListener.STATUS_NO_UPDATE;
  6506.     }
  6507.     // Only one call of this._updater.checkForDone is needed for RDF 
  6508.     // responses, since there is only one response per item.
  6509.     this._updater.checkForDone(item, status);
  6510.   },
  6511.  
  6512.   // Get a compulsory property from a resource. Reports an error if the 
  6513.   // property was not present. 
  6514.   _getPropertyFromResource: function(aDataSource, aSourceResource, aProperty, aLocalItem) {
  6515.     var rv;
  6516.     try {
  6517.       var property = gRDF.GetResource(EM_NS(aProperty));
  6518.       rv = stringData(aDataSource.GetTarget(aSourceResource, property, true));
  6519.       if (rv === undefined)
  6520.         throw Components.results.NS_ERROR_FAILURE;
  6521.     }
  6522.     catch (e) {
  6523.       // XXXben show console message "aProperty" not found on aSourceResource. 
  6524.       return null;
  6525.     }
  6526.     return rv;
  6527.   },
  6528.   
  6529.   // Parses Firefox 1.0RC1+ update.rdf format
  6530.   _parseV20UpdateInfo: function(aDataSource, aLocalItem, aUpdateData, aUpdateCheckType) {
  6531.     var extensionRes  = gRDF.GetResource(getItemPrefix(aLocalItem.type) + aLocalItem.id);
  6532.  
  6533.     var updatesArc = gRDF.GetResource(EM_NS("updates"));
  6534.     var updates = aDataSource.GetTarget(extensionRes, updatesArc, true);
  6535.     
  6536.     try {
  6537.       updates = updates.QueryInterface(Components.interfaces.nsIRDFResource);
  6538.     }
  6539.     catch (e) { 
  6540.       LOG("RDFItemUpdater:_parseV20UpdateInfo: No updates were found for:\r\n" + 
  6541.           aLocalItem.id + "\r\n" + 
  6542.           "If you are an Extension developer and were expecting there to be\r\n" + 
  6543.           "updates, this could mean any number of things, since the RDF system\r\n" + 
  6544.           "doesn't give up much in the way of information when the load fails.\r\n" + 
  6545.           "\r\nTry checking that: \r\n" + 
  6546.           " 1. Your RDF File is correct - e.g. check that there is a top level\r\n" + 
  6547.           "    RDF Resource with a URI urn:mozilla:extension:{GUID}, and that\r\n" + 
  6548.           "    the <em:updates> listed all have matching GUIDs.");
  6549.       return; 
  6550.     }
  6551.     
  6552.     var cu = Components.classes["@mozilla.org/rdf/container-utils;1"]
  6553.                        .getService(Components.interfaces.nsIRDFContainerUtils);
  6554.     if (cu.IsContainer(aDataSource, updates)) {
  6555.       var ctr = getContainer(aDataSource, updates);
  6556.  
  6557.       // Initial target version is the currently installed version
  6558.       aUpdateData.version = aLocalItem.version;
  6559.  
  6560.       var versions = ctr.GetElements();
  6561.       while (versions.hasMoreElements()) {
  6562.         // There are two different methodologies for collecting version 
  6563.         // information depending on whether or not we've bene invoked in 
  6564.         // "version updates only" mode or "version+newest" mode. 
  6565.         var version = versions.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  6566.         this._parseV20Update(aDataSource, version, aLocalItem, aUpdateData, aUpdateCheckType);
  6567.         if (aUpdateCheckType && aUpdateData.found)
  6568.           break;
  6569.       }
  6570.     }
  6571.   },
  6572.   
  6573.   _parseV20Update: function(aDataSource, aUpdateResource, aLocalItem, aUpdateData, aUpdateCheckType) {
  6574.     var version = this._getPropertyFromResource(aDataSource, aUpdateResource, 
  6575.                                                 "version", aLocalItem);
  6576.     var taArc = gRDF.GetResource(EM_NS("targetApplication"));
  6577.     var targetApps = aDataSource.GetTargets(aUpdateResource, taArc, true);
  6578.     while (targetApps.hasMoreElements()) {
  6579.       var targetApp = targetApps.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  6580.       var id = this._getPropertyFromResource(aDataSource, targetApp, "id", aLocalItem);
  6581.       if (id != this._updater._appID)
  6582.         continue;
  6583.       
  6584.       /* If we are looking for new versions then test whether this discovered
  6585.        * version is larger than any previously found update. Otherwise check
  6586.        * if this update is for the same version as we have installed. */
  6587.       var result = gVersionChecker.compare(version, aUpdateData.version);
  6588.       if (aUpdateCheckType == nsIExtensionManager.UPDATE_CHECK_NEWVERSION ? result > 0 : result == 0) {
  6589.         var maxAppVersion = this._getPropertyFromResource(aDataSource, targetApp, "maxVersion", aLocalItem);
  6590.         var minAppVersion = this._getPropertyFromResource(aDataSource, targetApp, "minVersion", aLocalItem);
  6591.         if (this._updater._isValidUpdate(aLocalItem, version, minAppVersion, maxAppVersion)) {
  6592.           aUpdateData.found = true;
  6593.           aUpdateData.version = version;
  6594.           aUpdateData.updateLink = this._getPropertyFromResource(aDataSource, targetApp, "updateLink", aLocalItem);
  6595.           aUpdateData.updateHash = this._getPropertyFromResource(aDataSource, targetApp, "updateHash", aLocalItem);
  6596.           aUpdateData.minVersion = minAppVersion;
  6597.           aUpdateData.maxVersion = maxAppVersion;
  6598.         }
  6599.       }
  6600.     }
  6601.   }
  6602. };
  6603.  
  6604. /**
  6605.  * A Datasource that holds Extensions. 
  6606.  * - Implements nsIRDFDataSource to drive UI
  6607.  * - Uses a RDF/XML datasource for storage (this is undesirable)
  6608.  * 
  6609.  * @constructor
  6610.  */
  6611. function ExtensionsDataSource(em) {
  6612.   this._em = em;
  6613.   
  6614.   this._itemRoot = gRDF.GetResource(RDFURI_ITEM_ROOT);
  6615.   this._defaultTheme = gRDF.GetResource(RDFURI_DEFAULT_THEME);
  6616. }
  6617. ExtensionsDataSource.prototype = {
  6618.   _inner    : null,
  6619.   _em       : null,
  6620.   _itemRoot     : null,
  6621.   _defaultTheme : null,
  6622.   
  6623.   /**
  6624.    * Determines if an item's dependencies are satisfied. An item's dependencies
  6625.    * are satisifed when all items specified in the item's em:requires arc are
  6626.    * installed, enabled, and the version is compatible based on the em:requires
  6627.    * minVersion and maxVersion.
  6628.    * @param   id
  6629.    *          The ID of the item
  6630.    * @returns true if the item's dependencies are satisfied.
  6631.    *          false if the item's dependencies are not satisfied.
  6632.    */
  6633.   satisfiesDependencies: function(id) {
  6634.     var ds = this._inner;
  6635.     var itemResource = getResourceForID(id);
  6636.     var targets = ds.GetTargets(itemResource, EM_R("requires"), true);
  6637.     if (!targets.hasMoreElements())
  6638.       return true;
  6639.  
  6640.     getVersionChecker();
  6641.     var idRes = EM_R("id");
  6642.     var minVersionRes = EM_R("minVersion");
  6643.     var maxVersionRes = EM_R("maxVersion");
  6644.     while (targets.hasMoreElements()) {
  6645.       var target = targets.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  6646.       var dependencyID = stringData(ds.GetTarget(target, idRes, true));
  6647.       var version = null;
  6648.       version = this.getItemProperty(dependencyID, "version");
  6649.       if (version) {
  6650.         var opType = this.getItemProperty(dependencyID, "opType");
  6651.         if (opType ==  OP_NEEDS_DISABLE || opType == OP_NEEDS_UNINSTALL)
  6652.           return false;
  6653.  
  6654.         if (this.getItemProperty(dependencyID, "userDisabled") == "true" ||
  6655.             this.getItemProperty(dependencyID, "appDisabled") == "true" ||
  6656.             this.getItemProperty(dependencyID, "userDisabled") == OP_NEEDS_DISABLE ||
  6657.             this.getItemProperty(dependencyID, "appDisabled") == OP_NEEDS_DISABLE)
  6658.           return false;
  6659.  
  6660.         var minVersion = stringData(ds.GetTarget(target, minVersionRes, true));
  6661.         var maxVersion = stringData(ds.GetTarget(target, maxVersionRes, true));
  6662.         var compatible = (gVersionChecker.compare(version, minVersion) >= 0 &&
  6663.                           gVersionChecker.compare(version, maxVersion) <= 0);
  6664.         if (!compatible)
  6665.           return false;
  6666.       }
  6667.       else {
  6668.         return false;
  6669.       }
  6670.     }
  6671.  
  6672.     return true;
  6673.   },
  6674.  
  6675.   /**
  6676.    * Determine if an item is compatible
  6677.    * @param   datasource
  6678.    *          The datasource to inspect for compatibility - can be the main
  6679.    *          datasource or an Install Manifest.
  6680.    * @param   source
  6681.    *          The RDF Resource of the item to inspect for compatibility.
  6682.    * @param   version
  6683.    *          The version of the application we are checking for compatibility
  6684.    *          against. If this parameter is undefined, the version of the running
  6685.    *          application is used.
  6686.    * @returns true if the item is compatible with this version of the 
  6687.    *          application, false, otherwise.
  6688.    */
  6689.   isCompatible: function (datasource, source, version) {
  6690.     // The Default Theme is always compatible. 
  6691.     if (source.EqualsNode(this._defaultTheme))
  6692.       return true;
  6693.  
  6694.     if (version === undefined) {
  6695.       version = gApp.version;
  6696.     }              
  6697.     var appID = gApp.ID;
  6698.     
  6699.     var targets = datasource.GetTargets(source, EM_R("targetApplication"), true);
  6700.     var idRes = EM_R("id");
  6701.     var minVersionRes = EM_R("minVersion");
  6702.     var maxVersionRes = EM_R("maxVersion");
  6703.     while (targets.hasMoreElements()) {
  6704.       var targetApp = targets.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  6705.       var id          = stringData(datasource.GetTarget(targetApp, idRes, true));
  6706.       var minVersion  = stringData(datasource.GetTarget(targetApp, minVersionRes, true));
  6707.       var maxVersion  = stringData(datasource.GetTarget(targetApp, maxVersionRes, true));
  6708.       if (id == appID) {
  6709.         var versionChecker = getVersionChecker();
  6710.         return ((versionChecker.compare(version, minVersion) >= 0) &&
  6711.                 (versionChecker.compare(version, maxVersion) <= 0));
  6712.       }
  6713.     }
  6714.     return false;
  6715.   },
  6716.  
  6717.   /**
  6718.    * Determine if an item is blocklisted
  6719.    * @param   id
  6720.    *          The id of the item to check.
  6721.    * @param   extVersion
  6722.    *          The item's version.
  6723.    * @param   appVersion
  6724.    *          The version of the application we are checking in the blocklist.
  6725.    *          If this parameter is undefined, the version of the running
  6726.    *          application is used.
  6727.    * @param   toolkitVersion
  6728.    *          The version of the toolkit we are checking in the blocklist.
  6729.    *          If this parameter is undefined, the version of the running
  6730.    *          toolkit is used.
  6731.    * @returns true if the item is compatible with this version of the 
  6732.    *          application, false, otherwise.
  6733.    */
  6734.   isBlocklisted: function(id, extVersion, appVersion, toolkitVersion) {
  6735.     if (appVersion === undefined)
  6736.       appVersion = gApp.version;
  6737.     if (toolkitVersion === undefined)
  6738.       toolkitVersion = gApp.platformVersion;
  6739.  
  6740.     var blItem = Blocklist.entries[id];
  6741.     if (!blItem)
  6742.       return false;
  6743.  
  6744.     var versionChecker = getVersionChecker();
  6745.     for (var i = 0; i < blItem.length; ++i) {
  6746.       if (versionChecker.compare(extVersion, blItem[i].minVersion) < 0  ||
  6747.           versionChecker.compare(extVersion, blItem[i].maxVersion) > 0)
  6748.         continue;
  6749.  
  6750.       var blTargetApp = blItem[i].targetApps[gApp.ID];
  6751.       if (blTargetApp) {
  6752.         for (var x = 0; x < blTargetApp.length; ++x) {
  6753.           if (versionChecker.compare(appVersion, blTargetApp[x].minVersion) < 0  ||
  6754.               versionChecker.compare(appVersion, blTargetApp[x].maxVersion) > 0)
  6755.             continue;
  6756.           return true;
  6757.         }
  6758.       }
  6759.  
  6760.       blTargetApp = blItem[i].targetApps[TOOLKIT_ID];
  6761.       if (!blTargetApp)
  6762.         return false;
  6763.       for (x = 0; x < blTargetApp.length; ++x) {
  6764.         if (versionChecker.compare(toolkitVersion, blTargetApp[x].minVersion) < 0  ||
  6765.             versionChecker.compare(toolkitVersion, blTargetApp[x].maxVersion) > 0)
  6766.           continue;
  6767.         return true;
  6768.       }
  6769.     }
  6770.     return false;
  6771.   },
  6772.  
  6773.   /**
  6774.    * Gets a list of items that are incompatible with a specific application version.
  6775.    * @param   appID
  6776.    *          The ID of the application - XXXben unused?
  6777.    * @param   appVersion
  6778.    *          The Version of the application to check for incompatibility against.
  6779.    * @param   desiredType
  6780.    *          The nsIUpdateItem type of items to look for
  6781.    * @param   includeDisabled
  6782.    *          Whether or not disabled items should be included in the set returned
  6783.    * @returns An array of nsIUpdateItems that are incompatible with the application
  6784.    *          ID/Version supplied.
  6785.    */
  6786.   getIncompatibleItemList: function(appID, appVersion, desiredType, includeDisabled) {
  6787.     var items = [];
  6788.     var ctr = getContainer(this._inner, this._itemRoot);
  6789.     var elements = ctr.GetElements();
  6790.     while (elements.hasMoreElements()) {
  6791.       var item = elements.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  6792.       var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  6793.       var type = this.getItemProperty(id, "type");
  6794.       // Skip this item if we're not seeking disabled items
  6795.       if (!includeDisabled && this.getItemProperty(id, "isDisabled") == "true")
  6796.         continue;
  6797.       
  6798.       // If the id of this item matches one of the items potentially installed
  6799.       // with and maintained by this application AND it is installed in the 
  6800.       // global install location (i.e. the place installed by the app installer)
  6801.       // it is and can be managed by the update file - it's not an item that has
  6802.       // been manually installed by the user into their profile dir, and as such
  6803.       // it is always compatible with the next release of the application since
  6804.       // we will continue to support it.
  6805.       var locationKey = this.getItemProperty(id, "installLocation");
  6806.       var appManaged = this.getItemProperty(id, "appManaged") == "true";
  6807.       if (appManaged && locationKey == KEY_APP_GLOBAL)
  6808.         continue;
  6809.  
  6810.       if (type != -1 && (type & desiredType) && 
  6811.           !this.isCompatible(this, item, appVersion))
  6812.         items.push(this.getItemForID(id));
  6813.     }
  6814.     return items;
  6815.   },
  6816.   
  6817.   /**
  6818.    * Retrieves a list of items that will be blocklisted by the application for
  6819.    * a specific application or toolkit version.
  6820.    * @param   appVersion
  6821.    *          The Version of the application to check the blocklist against.
  6822.    * @param   toolkitVersion
  6823.    *          The Version of the toolkit to check the blocklist against.
  6824.    * @param   desiredType
  6825.    *          The nsIUpdateItem type of items to look for
  6826.    * @param   includeAppDisabled
  6827.    *          Whether or not items that are or are already set to be disabled
  6828.    *          by the app on next restart should be included in the set returned
  6829.    * @returns An array of nsIUpdateItems that are blocklisted with the application
  6830.    *          or toolkit version supplied.
  6831.    */
  6832.   getBlocklistedItemList: function(appVersion, toolkitVersion, desiredType,
  6833.                                    includeAppDisabled) {
  6834.     var items = [];
  6835.     var ctr = getContainer(this._inner, this._itemRoot);
  6836.     var elements = ctr.GetElements();
  6837.     while (elements.hasMoreElements()) {
  6838.       var item = elements.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  6839.       var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  6840.       var type = this.getItemProperty(id, "type");
  6841.  
  6842.       if (!includeAppDisabled &&
  6843.           (this.getItemProperty(id, "appDisabled") == "true" ||
  6844.           this.getItemProperty(id, "appDisabled") == OP_NEEDS_DISABLE))
  6845.         continue;
  6846.  
  6847.       var extVersion = this.getItemProperty(id, "version");
  6848.       if (type != -1 && (type & desiredType) && 
  6849.           this.isBlocklisted(id, extVersion, appVersion, toolkitVersion))
  6850.         items.push(this.getItemForID(id));
  6851.     }
  6852.     return items;
  6853.   },
  6854.  
  6855.   /**
  6856.    * Gets a list of items of a specific type
  6857.    * @param   desiredType
  6858.    *          The nsIUpdateItem type of items to return
  6859.    * @param   countRef
  6860.    *          The XPCJS reference to the size of the returned array
  6861.    * @returns An array of nsIUpdateItems, populated only with an item for |id|
  6862.    *          if |id| is non-null, otherwise all items matching the specified
  6863.    *          type.
  6864.    */
  6865.   getItemList: function(desiredType, countRef) {
  6866.     var items = [];
  6867.     var ctr = getContainer(this, this._itemRoot);      
  6868.     var elements = ctr.GetElements();
  6869.     while (elements.hasMoreElements()) {
  6870.       var e = elements.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  6871.       var eID = stripPrefix(e.Value, PREFIX_ITEM_URI);
  6872.       var type = this.getItemProperty(eID, "type");
  6873.       if (type != -1 && type & desiredType)
  6874.         items.push(this.getItemForID(eID));
  6875.     }
  6876.     countRef.value = items.length;
  6877.     return items;
  6878.   },
  6879.  
  6880.   /**
  6881.    * Retrieves a list of installed nsIUpdateItems of items that are dependent
  6882.    * on another item.
  6883.    * @param   id
  6884.    *          The ID of the item that other items depend on.
  6885.    * @param   includeDisabled
  6886.    *          Whether to include disabled items in the set returned.
  6887.    * @param   countRef
  6888.    *          The XPCJS reference to the number of items returned.
  6889.    * @returns An array of installed nsIUpdateItems that depend on the item
  6890.    *          specified by the id parameter.
  6891.    */
  6892.   getDependentItemListForID: function(id, includeDisabled, countRef) {
  6893.     var items = [];
  6894.     var ds = this._inner;
  6895.     var ctr = getContainer(this, this._itemRoot);
  6896.     var elements = ctr.GetElements();
  6897.     while (elements.hasMoreElements()) {
  6898.       var e = elements.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  6899.       var dependentID = stripPrefix(e.Value, PREFIX_ITEM_URI);
  6900.       var targets = ds.GetTargets(e, EM_R("requires"), true);
  6901.       var idRes = EM_R("id");
  6902.       while (targets.hasMoreElements()) {
  6903.         var target = targets.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  6904.         var dependencyID = stringData(ds.GetTarget(target, idRes, true));
  6905.         if (dependencyID == id) {
  6906.           if (!includeDisabled && this.getItemProperty(dependentID, "isDisabled") == "true")
  6907.             continue;
  6908.           items.push(this.getItemForID(dependentID));
  6909.           break;
  6910.         }
  6911.       }
  6912.     }
  6913.     countRef.value = items.length;
  6914.     return items;
  6915.   },
  6916.   
  6917.   /**
  6918.    * Constructs an nsIUpdateItem for the given item ID
  6919.    * @param   id
  6920.    *          The GUID of the item to construct a nsIUpdateItem for
  6921.    * @returns The nsIUpdateItem for the id.
  6922.    */  
  6923.   getItemForID: function(id) {
  6924.     var r = getResourceForID(id);
  6925.     if (!r)
  6926.       return null;
  6927.     
  6928.     var targetAppInfo = this.getTargetApplicationInfo(id, this);
  6929.     var updateHash = this.getItemProperty(id, "availableUpdateHash");
  6930.     return makeItem(id, 
  6931.                     this.getItemProperty(id, "version"), 
  6932.                     this.getItemProperty(id, "installLocation"),
  6933.                     targetAppInfo ? targetAppInfo.minVersion : "",
  6934.                     targetAppInfo ? targetAppInfo.maxVersion : "",
  6935.                     this.getItemProperty(id, "name"),
  6936.                     this.getItemProperty(id, "availableUpdateURL"),
  6937.                     updateHash ? updateHash : "",
  6938.                     this.getItemProperty(id, "iconURL"), 
  6939.                     this.getItemProperty(id, "updateURL"), 
  6940.                     this.getItemProperty(id, "type"));
  6941.   },
  6942.   
  6943.   /**
  6944.    * Gets the name of the Install Location where an item is installed.
  6945.    * @param   id
  6946.    *          The GUID of the item to locate an Install Location for
  6947.    * @returns The string name of the Install Location where the item is 
  6948.    *          installed.
  6949.    */
  6950.   getInstallLocationKey: function(id) {
  6951.     return this.getItemProperty(id, "installLocation");
  6952.   },
  6953.   
  6954.   /**
  6955.    * Sets an RDF property on an item in a datasource. Does not create
  6956.    * multiple assertions
  6957.    * @param   datasource
  6958.    *          The target datasource where the property should be set
  6959.    * @param   source
  6960.    *          The RDF Resource to set the property on
  6961.    * @param   property
  6962.    *          The RDF Resource of the property to set
  6963.    * @param   newValue
  6964.    *          The RDF Node containing the new property value
  6965.    */
  6966.   _setProperty: function(datasource, source, property, newValue) {
  6967.     var oldValue = datasource.GetTarget(source, property, true);
  6968.     if (oldValue) {
  6969.       if (newValue)
  6970.         datasource.Change(source, property, oldValue, newValue);
  6971.       else
  6972.         datasource.Unassert(source, property, oldValue);
  6973.     }
  6974.     else if (newValue)
  6975.       datasource.Assert(source, property, newValue, true);
  6976.   },
  6977.   
  6978.   /**
  6979.    * Sets the target application info for an item in the Extensions
  6980.    * datasource and in the item's install manifest if it is installed in a
  6981.    * profile's extensions directory, it exists, and we have write access.
  6982.    * @param   id
  6983.    *          The ID of the item to update target application info for
  6984.    * @param   minVersion
  6985.    *          The minimum version of the target application that this item can
  6986.    *          run in
  6987.    * @param   maxVersion
  6988.    *          The maximum version of the target application that this item can
  6989.    *          run in
  6990.    */
  6991.   updateTargetAppInfo: function(id, minVersion, maxVersion)
  6992.   {
  6993.     // Update the Extensions datasource
  6994.     this.setTargetApplicationInfo(id, minVersion, maxVersion, null);
  6995.  
  6996.     var installLocation = InstallLocations.get(this.getInstallLocationKey(id));
  6997.     if (installLocation.name != KEY_APP_PROFILE)
  6998.       return;
  6999.  
  7000.     var installManifestFile = installLocation.getItemFile(id, FILE_INSTALL_MANIFEST);
  7001.     // Only update if the item exists and we can write to the location
  7002.     if (installManifestFile.exists() && installLocation.canAccess)
  7003.       this.setTargetApplicationInfo(id, minVersion, maxVersion,
  7004.                                     getInstallManifest(installManifestFile));
  7005.   },
  7006.  
  7007.   /**
  7008.    * Gets the updated target application info if it exists for an item from
  7009.    * the Extensions datasource during an installation or upgrade.
  7010.    * @param   id
  7011.    *          The ID of the item to discover updated target application info for
  7012.    * @returns A JS Object with the following properties:
  7013.    *          "id"            The id of the item
  7014.    *          "minVersion"    The updated minimum version of the target
  7015.    *                          application that this item can run in
  7016.    *          "maxVersion"    The updated maximum version of the target
  7017.    *                          application that this item can run in
  7018.    */
  7019.   getUpdatedTargetAppInfo: function(id) {
  7020.     // The default theme is always compatible so there is never update info.
  7021.     if (getResourceForID(id).EqualsNode(this._defaultTheme))
  7022.       return null;
  7023.  
  7024.     var appID = gApp.ID;
  7025.     var r = getResourceForID(id);
  7026.     var targetApps = this._inner.GetTargets(r, EM_R("targetApplication"), true);
  7027.     if (!targetApps.hasMoreElements())
  7028.       targetApps = this._inner.GetTargets(gInstallManifestRoot, EM_R("targetApplication"), true); 
  7029.     while (targetApps.hasMoreElements()) {
  7030.       var targetApp = targetApps.getNext();
  7031.       if (targetApp instanceof Components.interfaces.nsIRDFResource) {
  7032.         try {
  7033.           var foundAppID = stringData(this._inner.GetTarget(targetApp, EM_R("id"), true));
  7034.           if (foundAppID != appID) // Different target application
  7035.             continue;
  7036.           var updatedMinVersion = this._inner.GetTarget(targetApp, EM_R("updatedMinVersion"), true);
  7037.           var updatedMaxVersion = this._inner.GetTarget(targetApp, EM_R("updatedMaxVersion"), true);
  7038.           if (updatedMinVersion && updatedMaxVersion)
  7039.             return { id        : id,
  7040.                      minVersion: stringData(updatedMinVersion),
  7041.                      maxVersion: stringData(updatedMaxVersion) };
  7042.           else
  7043.             return null;
  7044.         }
  7045.         catch (e) { 
  7046.           continue;
  7047.         }
  7048.       }
  7049.     }
  7050.     return null;
  7051.   },
  7052.   
  7053.   /**
  7054.    * Sets the updated target application info for an item in the Extensions
  7055.    * datasource during an installation or upgrade.
  7056.    * @param   id
  7057.    *          The ID of the item to set updated target application info for
  7058.    * @param   updatedMinVersion
  7059.    *          The updated minimum version of the target application that this
  7060.    *          item can run in
  7061.    * @param   updatedMaxVersion
  7062.    *          The updated maximum version of the target application that this
  7063.    *          item can run in
  7064.    */
  7065.   setUpdatedTargetAppInfo: function(id, updatedMinVersion, updatedMaxVersion) {
  7066.     // The default theme is always compatible so it is never updated.
  7067.     if (getResourceForID(id).EqualsNode(this._defaultTheme))
  7068.       return;
  7069.  
  7070.     // Version/Dependency Info
  7071.     var updatedMinVersionRes = EM_R("updatedMinVersion");
  7072.     var updatedMaxVersionRes = EM_R("updatedMaxVersion");
  7073.  
  7074.     var appID = gApp.ID;
  7075.     var r = getResourceForID(id);
  7076.     var targetApps = this._inner.GetTargets(r, EM_R("targetApplication"), true);
  7077.     // add updatedMinVersion and updatedMaxVersion for an install else an upgrade
  7078.     if (!targetApps.hasMoreElements()) {
  7079.       var idRes = EM_R("id");
  7080.       var targetRes = getResourceForID(id);
  7081.       var property = EM_R("targetApplication");
  7082.       var anon = gRDF.GetAnonymousResource();
  7083.       this._inner.Assert(anon, idRes, EM_L(appID), true);
  7084.       this._inner.Assert(anon, updatedMinVersionRes, EM_L(updatedMinVersion), true);
  7085.       this._inner.Assert(anon, updatedMaxVersionRes, EM_L(updatedMaxVersion), true);
  7086.       this._inner.Assert(targetRes, property, anon, true);
  7087.     }
  7088.     else {
  7089.       while (targetApps.hasMoreElements()) {
  7090.         var targetApp = targetApps.getNext();
  7091.         if (targetApp instanceof Components.interfaces.nsIRDFResource) {
  7092.           var foundAppID = stringData(this._inner.GetTarget(targetApp, EM_R("id"), true));
  7093.           if (foundAppID != appID) // Different target application
  7094.             continue;
  7095.           this._inner.Assert(targetApp, updatedMinVersionRes, EM_L(updatedMinVersion), true);
  7096.           this._inner.Assert(targetApp, updatedMaxVersionRes, EM_L(updatedMaxVersion), true);
  7097.           break;
  7098.         }
  7099.       }
  7100.     }
  7101.     this.Flush();
  7102.   },
  7103.  
  7104.   /**
  7105.    * Gets the target application info for an item from a datasource.
  7106.    * @param   id
  7107.    *          The GUID of the item to discover target application info for
  7108.    * @param   datasource
  7109.    *          The datasource to look up target application info in
  7110.    * @returns A JS Object with the following properties:
  7111.    *          "minVersion"    The minimum version of the target application
  7112.    *                          that this item can run in
  7113.    *          "maxVersion"    The maximum version of the target application
  7114.    *                          that this item can run in
  7115.    *          or null, if no target application data exists for the specified
  7116.    *          id in the supplied datasource.
  7117.    */
  7118.   getTargetApplicationInfo: function(id, datasource) {
  7119.     // The default theme is always compatible. 
  7120.     if (getResourceForID(id).EqualsNode(this._defaultTheme)) {
  7121.       var ver = gApp.version;
  7122.       return { minVersion: ver, maxVersion: ver };
  7123.     }
  7124.     var appID = gApp.ID;
  7125.     var r = getResourceForID(id);
  7126.     var targetApps = datasource.GetTargets(r, EM_R("targetApplication"), true);
  7127.     if (!targetApps)
  7128.       return null;
  7129.     if (!targetApps.hasMoreElements())
  7130.       targetApps = datasource.GetTargets(gInstallManifestRoot, EM_R("targetApplication"), true); 
  7131.     while (targetApps.hasMoreElements()) {
  7132.       var targetApp = targetApps.getNext();
  7133.       if (targetApp instanceof Components.interfaces.nsIRDFResource) {
  7134.         try {
  7135.           var foundAppID = stringData(datasource.GetTarget(targetApp, EM_R("id"), true));
  7136.           if (foundAppID != appID) // Different target application
  7137.             continue;
  7138.           
  7139.           return { minVersion: stringData(datasource.GetTarget(targetApp, EM_R("minVersion"), true)),
  7140.                    maxVersion: stringData(datasource.GetTarget(targetApp, EM_R("maxVersion"), true)) };
  7141.         }
  7142.         catch (e) { 
  7143.           continue;
  7144.         }
  7145.       }
  7146.     }
  7147.     return null;
  7148.   },
  7149.   
  7150.   /**
  7151.    * Sets the target application info for an item in a datasource.
  7152.    * @param   id
  7153.    *          The GUID of the item to discover target application info for
  7154.    * @param   minVersion
  7155.    *          The minimum version of the target application that this item can
  7156.    *          run in
  7157.    * @param   maxVersion
  7158.    *          The maximum version of the target application that this item can
  7159.    *          run in
  7160.    * @param   datasource
  7161.    *          The datasource to loko up target application info in
  7162.    */
  7163.   setTargetApplicationInfo: function(id, minVersion, maxVersion, datasource) {
  7164.     var targetDataSource = datasource;
  7165.     if (!targetDataSource)
  7166.       targetDataSource = this._inner;
  7167.       
  7168.     var appID = gApp.ID;
  7169.     var r = getResourceForID(id);
  7170.     var targetApps = targetDataSource.GetTargets(r, EM_R("targetApplication"), true);
  7171.     if (!targetApps.hasMoreElements())
  7172.       targetApps = datasource.GetTargets(gInstallManifestRoot, EM_R("targetApplication"), true); 
  7173.     while (targetApps.hasMoreElements()) {
  7174.       var targetApp = targetApps.getNext();
  7175.       if (targetApp instanceof Components.interfaces.nsIRDFResource) {
  7176.         var foundAppID = stringData(targetDataSource.GetTarget(targetApp, EM_R("id"), true));
  7177.         if (foundAppID != appID) // Different target application
  7178.           continue;
  7179.         
  7180.         this._setProperty(targetDataSource, targetApp, EM_R("minVersion"), EM_L(minVersion));
  7181.         this._setProperty(targetDataSource, targetApp, EM_R("maxVersion"), EM_L(maxVersion));
  7182.         
  7183.         // If we were setting these properties on the main datasource, flush
  7184.         // it now. (Don't flush changes set on Install Manifests - they are
  7185.         // fleeting).
  7186.         if (!datasource)
  7187.           this.Flush();
  7188.  
  7189.         break;
  7190.       }
  7191.     }
  7192.   },
  7193.   
  7194.   /** 
  7195.    * Gets a property of an item
  7196.    * @param   id
  7197.    *          The GUID of the item
  7198.    * @param   property
  7199.    *          The name of the property (excluding EM_NS)
  7200.    * @returns The literal value of the property, or undefined if there is no 
  7201.    *          value.
  7202.    */
  7203.   getItemProperty: function(id, property) { 
  7204.     var item = getResourceForID(id);
  7205.     if (!item) {
  7206.       LOG("getItemProperty failing for lack of an item. This means getResourceForItem \
  7207.            failed to locate a resource for aItemID (item ID = " + id + ", property = " + property + ")");
  7208.     }
  7209.     else 
  7210.       return this._getItemProperty(item, property);
  7211.     return undefined;
  7212.   },
  7213.   
  7214.   /**
  7215.    * Gets a property of an item resource
  7216.    * @param   itemResource
  7217.    *          The RDF Resource of the item
  7218.    * @param   property
  7219.    *          The name of the property (excluding EM_NS)
  7220.    * @returns The literal value of the property, or undefined if there is no
  7221.    *          value.
  7222.    */
  7223.   _getItemProperty: function(itemResource, property) {
  7224.     var target = this.GetTarget(itemResource, EM_R(property), true);
  7225.     var value = stringData(target);
  7226.     if (value === undefined)
  7227.       value = intData(target);
  7228.     return value === undefined ? "" : value;
  7229.   },
  7230.   
  7231.   /**
  7232.    * Sets a property on an item.
  7233.    * @param   id
  7234.    *          The GUID of the item
  7235.    * @param   propertyArc
  7236.    *          The RDF Resource of the property arc
  7237.    * @param   propertyValue
  7238.    *          A nsIRDFLiteral value of the property to be set
  7239.    */
  7240.   setItemProperty: function (id, propertyArc, propertyValue) {
  7241.     var item = getResourceForID(id);
  7242.     this._setProperty(this._inner, item, propertyArc, propertyValue);
  7243.     this.Flush();  
  7244.   },
  7245.  
  7246.   /**
  7247.    * Inserts the RDF resource for an item into a container.
  7248.    * @param   id
  7249.    *          The GUID of the item
  7250.    */
  7251.   insertItemIntoContainer: function(id) {
  7252.     // Get the target container and resource
  7253.     var ctr = getContainer(this._inner, this._itemRoot);
  7254.     var itemResource = getResourceForID(id);
  7255.     // Don't bother adding the extension to the list if it's already there. 
  7256.     // (i.e. we're upgrading)
  7257.     var oldIndex = ctr.IndexOf(itemResource);
  7258.     if (oldIndex == -1)
  7259.       ctr.AppendElement(itemResource);
  7260.     this.Flush();
  7261.   }, 
  7262.  
  7263.   /**
  7264.    * Removes the RDF resource for an item from its container.
  7265.    * @param   id
  7266.    *          The GUID of the item
  7267.    */
  7268.   removeItemFromContainer: function(id) {
  7269.     var ctr = getContainer(this._inner, this._itemRoot);
  7270.     var itemResource = getResourceForID(id);
  7271.     ctr.RemoveElement(itemResource, true);
  7272.     this.Flush();
  7273.   },
  7274.  
  7275.   /**
  7276.    * Removes a corrupt item entry from the extension list added due to buggy 
  7277.    * code in previous EM versions!  
  7278.    * @param   id
  7279.    *          The GUID of the item
  7280.    */
  7281.   removeCorruptItem: function(id) {
  7282.     this.removeItemMetadata(id);
  7283.     this.removeItemFromContainer(id);
  7284.   },
  7285.  
  7286.   /**
  7287.    * Removes a corrupt download entry from the list
  7288.    * @param   uri
  7289.    *          The RDF URI of the item.
  7290.    * @returns The RDF Resource of the removed entry 
  7291.    */
  7292.   removeCorruptDLItem: function(uri) {
  7293.     var itemResource = gRDF.GetResource(uri);
  7294.     var ctr = getContainer(this._inner, this._itemRoot);
  7295.     if (ctr.IndexOf(itemResource) != -1) {
  7296.       ctr.RemoveElement(itemResource, true);
  7297.       this._cleanResource(itemResource);
  7298.       this.Flush();
  7299.     }
  7300.     return itemResource;
  7301.   },
  7302.   
  7303.   /**
  7304.    * Copies localized properties from an install manifest to the datasource
  7305.    *
  7306.    * @param   installManifest
  7307.    *          The Install Manifest datasource we are copying from
  7308.    * @param   source
  7309.    *          The source resource of the localized properties
  7310.    * @param   target
  7311.    *          The target resource to store the localized properties
  7312.    */
  7313.   _addLocalizedMetadata: function(installManifest, sourceRes, targetRes)
  7314.   {
  7315.     var singleProps = ["name", "description", "creator", "homepageURL"];
  7316.  
  7317.     for (var i = 0; i < singleProps.length; ++i) {
  7318.       var property = EM_R(singleProps[i]);
  7319.       var literal = installManifest.GetTarget(sourceRes, property, true);
  7320.       // If literal is null, _setProperty will remove any existing.
  7321.       this._setProperty(this._inner, targetRes, property, literal);
  7322.     }    
  7323.     
  7324.     // Assert properties with multiple values    
  7325.     var manyProps = ["developer", "translator", "contributor"];
  7326.     for (var i = 0; i < manyProps.length; ++i) {
  7327.       var property = EM_R(manyProps[i]);
  7328.       var literals = installManifest.GetTargets(sourceRes, property, true);
  7329.       
  7330.       var oldValues = this._inner.GetTargets(targetRes, property, true);
  7331.       while (oldValues.hasMoreElements()) {
  7332.         var oldValue = oldValues.getNext().QueryInterface(Components.interfaces.nsIRDFNode);
  7333.         this._inner.Unassert(targetRes, property, oldValue);
  7334.       }
  7335.       while (literals.hasMoreElements()) {
  7336.         var literal = literals.getNext().QueryInterface(Components.interfaces.nsIRDFNode);
  7337.         this._inner.Assert(targetRes, property, literal, true);
  7338.       }
  7339.     }
  7340.  
  7341.   },
  7342.   
  7343.   /**
  7344.    * Copies metadata from an Install Manifest Datasource into the Extensions
  7345.    * DataSource.
  7346.    * @param   id
  7347.    *          The GUID of the item
  7348.    * @param   installManifest
  7349.    *          The Install Manifest datasource we are copying from
  7350.    * @param   installLocation
  7351.    *          The Install Location of the item. 
  7352.    */
  7353.   addItemMetadata: function(id, installManifest, installLocation) {
  7354.     var targetRes = getResourceForID(id);
  7355.     // Remove any temporary assertions used for the install process
  7356.     this._setProperty(this._inner, targetRes, EM_R("newVersion"), null);
  7357.     // Copy the assertions over from the source datasource. 
  7358.     // Assert properties with single values
  7359.     var singleProps = ["version", "updateURL", "updateService", "optionsURL",
  7360.                        "aboutURL", "iconURL", "internalName"];
  7361.  
  7362.     // Items installed into restricted Install Locations can also be locked 
  7363.     // (can't be removed or disabled), and hidden (not shown in the UI)
  7364.     if (installLocation.restricted)
  7365.       singleProps = singleProps.concat(["locked", "hidden"]);
  7366.     if (installLocation.name == KEY_APP_GLOBAL) 
  7367.       singleProps = singleProps.concat(["appManaged"]);
  7368.     for (var i = 0; i < singleProps.length; ++i) {
  7369.       var property = EM_R(singleProps[i]);
  7370.       var literal = installManifest.GetTarget(gInstallManifestRoot, property, true);
  7371.       // If literal is null, _setProperty will remove any existing.
  7372.       this._setProperty(this._inner, targetRes, property, literal);
  7373.     }    
  7374.     
  7375.     var localizedProp = EM_R("localized");
  7376.     var localeProp = EM_R("locale");
  7377.     // Remove old localized properties
  7378.     var oldValues = this._inner.GetTargets(targetRes, localizedProp, true);
  7379.     while (oldValues.hasMoreElements()) {
  7380.       var oldValue = oldValues.getNext().QueryInterface(Components.interfaces.nsIRDFNode);
  7381.       this._cleanResource(oldValue);
  7382.       this._inner.Unassert(targetRes, localizedProp, oldValue);
  7383.     }
  7384.     // Add each localized property
  7385.     var localizations = installManifest.GetTargets(gInstallManifestRoot, localizedProp, true);
  7386.     while (localizations.hasMoreElements()) {
  7387.       var localization = localizations.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  7388.       var anon = gRDF.GetAnonymousResource();
  7389.       var literals = installManifest.GetTargets(localization, localeProp, true);
  7390.       while (literals.hasMoreElements()) {
  7391.         var literal = literals.getNext().QueryInterface(Components.interfaces.nsIRDFNode);
  7392.         this._inner.Assert(anon, localeProp, literal, true);
  7393.       }
  7394.       this._addLocalizedMetadata(installManifest, localization, anon);
  7395.       this._inner.Assert(targetRes, localizedProp, anon, true);
  7396.     }
  7397.     // Add the fallback properties
  7398.     this._addLocalizedMetadata(installManifest, gInstallManifestRoot, targetRes);
  7399.  
  7400.     // Version/Dependency Info
  7401.     var versionProps = ["targetApplication", "requires"];
  7402.     var idRes = EM_R("id");
  7403.     var minVersionRes = EM_R("minVersion");
  7404.     var maxVersionRes = EM_R("maxVersion");
  7405.     for (var i = 0; i < versionProps.length; ++i) {
  7406.       var property = EM_R(versionProps[i]);
  7407.       var newVersionInfos = installManifest.GetTargets(gInstallManifestRoot, property, true);
  7408.  
  7409.       var oldVersionInfos = this._inner.GetTargets(targetRes, property, true);
  7410.       while (oldVersionInfos.hasMoreElements()) {
  7411.         var oldVersionInfo = oldVersionInfos.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  7412.         this._cleanResource(oldVersionInfo);
  7413.         this._inner.Unassert(targetRes, property, oldVersionInfo);
  7414.       }
  7415.       while (newVersionInfos.hasMoreElements()) {
  7416.         var newVersionInfo = newVersionInfos.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  7417.         var anon = gRDF.GetAnonymousResource();
  7418.         this._inner.Assert(anon, idRes, installManifest.GetTarget(newVersionInfo, idRes, true), true);
  7419.         this._inner.Assert(anon, minVersionRes, installManifest.GetTarget(newVersionInfo, minVersionRes, true), true);
  7420.         this._inner.Assert(anon, maxVersionRes, installManifest.GetTarget(newVersionInfo, maxVersionRes, true), true);
  7421.         this._inner.Assert(targetRes, property, anon, true);
  7422.       }
  7423.     }
  7424.     this.updateProperty(id, "opType");
  7425.     this.updateProperty(id, "updateable");
  7426.     this.Flush();
  7427.   },
  7428.   
  7429.   /**
  7430.    * Strips an item entry of all assertions.
  7431.    * @param   id
  7432.    *          The GUID of the item
  7433.    */
  7434.   removeItemMetadata: function(id) {
  7435.     var item = getResourceForID(id);
  7436.     var resources = ["targetApplication", "requires", "localized"];
  7437.     for (var i = 0; i < resources.length; ++i) {
  7438.       var targetApps = this._inner.GetTargets(item, EM_R(resources[i]), true);
  7439.       while (targetApps.hasMoreElements()) {
  7440.         var targetApp = targetApps.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  7441.         this._cleanResource(targetApp);
  7442.       }
  7443.     }
  7444.  
  7445.     this._cleanResource(item);
  7446.   },
  7447.   
  7448.   /**
  7449.    * Strips a resource of all outbound assertions. We use methods like this 
  7450.    * since the RDFXMLDatasource will write out all assertions, even if they
  7451.    * are not connected through our root. 
  7452.    * @param   resource
  7453.    *          The resource to clean. 
  7454.    */
  7455.   _cleanResource: function(resource) {
  7456.     // Remove outward arcs
  7457.     var arcs = this._inner.ArcLabelsOut(resource);
  7458.     while (arcs.hasMoreElements()) {
  7459.       var arc = arcs.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  7460.       var targets = this._inner.GetTargets(resource, arc, true);
  7461.       while (targets.hasMoreElements()) {
  7462.         var value = targets.getNext().QueryInterface(Components.interfaces.nsIRDFNode);
  7463.         if (value)
  7464.           this._inner.Unassert(resource, arc, value);
  7465.       }
  7466.     }
  7467.   },
  7468.   
  7469.   /**
  7470.    * Notify views that this propery has changed (this is for properties that
  7471.    * are implemented by this datasource rather than by the inner in-memory
  7472.    * datasource and thus do not get free change handling).
  7473.    * @param   id 
  7474.    *          The GUID of the item to update the property for.
  7475.    * @param   property
  7476.    *          The property (less EM_NS) to update.
  7477.    */
  7478.   updateProperty: function(id, property) {
  7479.     var item = getResourceForID(id);
  7480.     this._updateProperty(item, property);
  7481.   },
  7482.   
  7483.   /**
  7484.    * Notify views that this propery has changed (this is for properties that
  7485.    * are implemented by this datasource rather than by the inner in-memory
  7486.    * datasource and thus do not get free change handling). This allows updating
  7487.    * properties for download items which don't have the em item prefix in there
  7488.    ( resource value. In most instances updateProperty should be used.
  7489.    * @param   item
  7490.    *          The item to update the property for.
  7491.    * @param   property
  7492.    *          The property (less EM_NS) to update.
  7493.    */
  7494.   _updateProperty: function(item, property) {
  7495.     if (item) {
  7496.       var propertyResource = EM_R(property);
  7497.       var value = this.GetTarget(item, propertyResource, true);
  7498.       for (var i = 0; i < this._observers.length; ++i) {
  7499.         if (value)
  7500.           this._observers[i].onChange(this, item, propertyResource, 
  7501.                                       EM_L(""), value);
  7502.         else
  7503.           this._observers[i].onUnassert(this, item, propertyResource, 
  7504.                                         EM_L(""));
  7505.       }
  7506.     }
  7507.   },
  7508.   
  7509.   /**
  7510.    * Move an Item to the index of another item in its container.
  7511.    * @param   movingID
  7512.    *          The ID of the item to be moved.
  7513.    * @param   destinationID
  7514.    *          The ID of an item to move another item to.
  7515.    */
  7516.   moveToIndexOf: function(movingID, destinationID) {
  7517.     var extensions = gRDF.GetResource(RDFURI_ITEM_ROOT);
  7518.     var ctr = getContainer(this._inner, extensions);
  7519.     var item = gRDF.GetResource(movingID);
  7520.     var index = ctr.IndexOf(gRDF.GetResource(destinationID));
  7521.     if (index == -1)
  7522.       index = 1; // move to the beginning if destinationID is not found
  7523.     this._inner.beginUpdateBatch();
  7524.     ctr.RemoveElement(item, true);
  7525.     ctr.InsertElementAt(item, index, true);
  7526.     this._inner.endUpdateBatch();
  7527.     this.Flush();
  7528.   },
  7529.  
  7530.   /**
  7531.    * Sorts addons of the specified type by the specified property starting from
  7532.    * the top of their container. If the addons are already sorted then no action
  7533.    * is performed.
  7534.    * @param   type
  7535.    *          The nsIUpdateItem type of the items to sort.
  7536.    * @param   propertyName
  7537.    *          The RDF property name used for sorting.
  7538.    * @param   isAscending
  7539.    *          true to sort ascending and false to sort descending
  7540.    */
  7541.   sortTypeByProperty: function(type, propertyName, isAscending) {
  7542.     var items = [];
  7543.     var ctr = getContainer(this._inner, this._itemRoot);
  7544.     var elements = ctr.GetElements();
  7545.     // Base 0 ordinal for checking against the existing order after sorting
  7546.     var ordinal = 0;
  7547.     while (elements.hasMoreElements()) {
  7548.       var item = elements.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  7549.       var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  7550.       var itemType = this.getItemProperty(id, "type");
  7551.       if (itemType & type) {
  7552.         items.push({ item   : item,
  7553.                      ordinal: ordinal,
  7554.                      sortkey: this.getItemProperty(id, propertyName).toLowerCase() });
  7555.         ordinal++;
  7556.       }
  7557.     }
  7558.  
  7559.     var direction = isAscending ? 1 : -1; 
  7560.     // Case insensitive sort
  7561.     function compare(a, b) {
  7562.         if (a.sortkey < b.sortkey) return (-1 * direction);
  7563.         if (a.sortkey > b.sortkey) return (1 * direction);
  7564.         return 0;
  7565.     }
  7566.     items.sort(compare);
  7567.  
  7568.     // Check if there are any changes in the order of the items
  7569.     var isDirty = false;
  7570.     for (var i = 0; i < items.length; i++) {
  7571.       if (items[i].ordinal != i) {
  7572.         isDirty = true;
  7573.         break;
  7574.       }
  7575.     }
  7576.  
  7577.     // If there are no changes then early return to avoid the perf impact
  7578.     if (!isDirty)
  7579.       return;
  7580.  
  7581.     // Reorder the items by moving them to the top of the container
  7582.     this.beginUpdateBatch();
  7583.     for (i = 0; i < items.length; i++) {
  7584.       ctr.RemoveElement(items[i].item, true);
  7585.       ctr.InsertElementAt(items[i].item, i + 1, true);
  7586.     }
  7587.     this.endUpdateBatch();
  7588.     this.Flush();
  7589.   },
  7590.  
  7591.   /**
  7592.    * Determines if an Item is an active download
  7593.    * @param   id
  7594.    *          The ID of the item. This will be a uri scheme without the
  7595.    *          em item prefix so getProperty shouldn't be used.
  7596.    * @returns true if the item is an active download, false otherwise.
  7597.    */
  7598.   isDownloadItem: function(id) {
  7599.     var downloadURL = stringData(this.GetTarget(gRDF.GetResource(id), EM_R("downloadURL"), true));
  7600.     return downloadURL && downloadURL != "";
  7601.   },
  7602.  
  7603.   /**
  7604.    * Adds an entry representing an active download to the appropriate container
  7605.    * @param   addon
  7606.    *          An object implementing nsIUpdateItem for the addon being 
  7607.    *          downloaded.
  7608.    */
  7609.   addDownload: function(addon) {
  7610.     // Updates have already been added to the datasource so we just update the
  7611.     // download state.
  7612.     if (addon.id != addon.xpiURL) {
  7613.       this.updateDownloadState(PREFIX_ITEM_URI + addon.id, "waiting");
  7614.       return;
  7615.     }
  7616.     var res = gRDF.GetResource(addon.xpiURL);
  7617.     this._setProperty(this._inner, res, EM_R("name"), EM_L(addon.name));
  7618.     this._setProperty(this._inner, res, EM_R("version"), EM_L(addon.version));
  7619.     this._setProperty(this._inner, res, EM_R("iconURL"), EM_L(addon.iconURL));
  7620.     this._setProperty(this._inner, res, EM_R("downloadURL"), EM_L(addon.xpiURL));
  7621.     this._setProperty(this._inner, res, EM_R("type"), EM_I(addon.type));
  7622.  
  7623.     var ctr = getContainer(this._inner, this._itemRoot);
  7624.     if (ctr.IndexOf(res) == -1)
  7625.       ctr.AppendElement(res);
  7626.     
  7627.     this.updateDownloadState(addon.xpiURL, "waiting");
  7628.     this.Flush();
  7629.   },
  7630.   
  7631.   /**
  7632.    * Adds an entry representing an item that is incompatible and is being
  7633.    * checked for a compatibility update.
  7634.    * @param   name
  7635.    *          The display name of the item being checked
  7636.    * @param   url
  7637.    *          The URL string of the xpi file that has been staged.
  7638.    * @param   type
  7639.    *          The nsIUpdateItem type of the item
  7640.    * @param   version
  7641.    *          The version of the item
  7642.    */
  7643.   addIncompatibleUpdateItem: function(name, url, type, version) {
  7644.     var iconURL = (type == nsIUpdateItem.TYPE_THEME) ? URI_GENERIC_ICON_THEME :
  7645.                                                        URI_GENERIC_ICON_XPINSTALL;
  7646.     var extensionsStrings = BundleManager.getBundle(URI_EXTENSIONS_PROPERTIES);
  7647.     var updateMsg = extensionsStrings.formatStringFromName("incompatibleUpdateMessage",
  7648.                                                            [BundleManager.appName, name], 2)
  7649.  
  7650.     var res = gRDF.GetResource(url);
  7651.     this._setProperty(this._inner, res, EM_R("name"), EM_L(name));
  7652.     this._setProperty(this._inner, res, EM_R("iconURL"), EM_L(iconURL));
  7653.     this._setProperty(this._inner, res, EM_R("downloadURL"), EM_L(url));
  7654.     this._setProperty(this._inner, res, EM_R("type"), EM_I(type));
  7655.     this._setProperty(this._inner, res, EM_R("version"), EM_L(version));
  7656.     this._setProperty(this._inner, res, EM_R("incompatibleUpdate"), EM_L("true"));
  7657.     this._setProperty(this._inner, res, EM_R("description"), EM_L(updateMsg));
  7658.  
  7659.     var ctr = getContainer(this._inner, this._itemRoot);
  7660.     if (ctr.IndexOf(res) == -1)
  7661.       ctr.AppendElement(res);
  7662.  
  7663.     this.updateDownloadState(url, "incompatibleUpdate");
  7664.     this.Flush();
  7665.   },
  7666.  
  7667.   /**
  7668.    * Removes an active download from the appropriate container
  7669.    * @param   url
  7670.    *          The URL string of the active download to be removed
  7671.    */
  7672.   removeDownload: function(url) {
  7673.     var res = gRDF.GetResource(url);
  7674.     var ctr = getContainer(this._inner, this._itemRoot);
  7675.     if (ctr.IndexOf(res) != -1) 
  7676.       ctr.RemoveElement(res, true);
  7677.     this._cleanResource(res);
  7678.     this.updateDownloadState(url, null);
  7679.     this.Flush();
  7680.   },
  7681.   
  7682.   /**
  7683.    * A hash of RDF resource values (e.g. Add-on IDs or XPI URLs) that represent
  7684.    * installation progress for a single browser session.
  7685.    */
  7686.   _progressData: { },
  7687.  
  7688.   /**
  7689.    * Updates the install progress data for a given ID (e.g. Add-on IDs or
  7690.    * XPI URLs).
  7691.    * @param   id
  7692.    *          The URL string of the active download to be removed
  7693.    * @param   state
  7694.    *          The current state in the installation process. If null the object
  7695.    *          is deleted from _progressData.
  7696.    */
  7697.   updateDownloadState: function(id, state) {
  7698.     if (!state) {
  7699.       if (id in this._progressData)
  7700.         delete this._progressData[id];
  7701.       return;
  7702.     }
  7703.     else {
  7704.       if (!(id in this._progressData)) 
  7705.         this._progressData[id] = { };
  7706.       this._progressData[id].state = state;
  7707.     }
  7708.     var item = gRDF.GetResource(id);
  7709.     this._updateProperty(item, "state");
  7710.   },
  7711.  
  7712.   updateDownloadProgress: function(id, progress) {
  7713.     if (!progress) {
  7714.       if (!(id in this._progressData))
  7715.         return;
  7716.       this._progressData[id].progress = null;
  7717.     }
  7718.     else {
  7719.       if (!(id in this._progressData))
  7720.         this.updateDownloadState(id, "downloading");
  7721.  
  7722.       if (this._progressData[id].progress == progress)
  7723.         return;
  7724.  
  7725.       this._progressData[id].progress = progress;
  7726.     }
  7727.     var item = gRDF.GetResource(id);
  7728.     this._updateProperty(item, "progress");
  7729.   },
  7730.  
  7731.   /**
  7732.    * A GUID->location-key hash of items that are visible to the application.
  7733.    * These are items that show up in the Extension/Themes etc UI. If there is
  7734.    * an instance of the same item installed in Install Locations of differing 
  7735.    * profiles, the item at the highest priority location will appear in this 
  7736.    * list.
  7737.    */
  7738.   visibleItems: { },
  7739.   
  7740.   /**
  7741.    * Walk the list of installed items and determine what the visible list is, 
  7742.    * based on which items are visible at the highest priority locations. 
  7743.    */  
  7744.   _buildVisibleItemList: function() {
  7745.     var ctr = getContainer(this, this._itemRoot);
  7746.     var items = ctr.GetElements();
  7747.     while (items.hasMoreElements()) {
  7748.       var item = items.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  7749.       // Resource URIs adopt the format: location-key,item-id
  7750.       var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  7751.       this.visibleItems[id] = this.getItemProperty(id, "installLocation");
  7752.     }
  7753.   },
  7754.   
  7755.   /**
  7756.    * Updates an item's location in the visible item list.
  7757.    * @param   id
  7758.    *          The GUID of the item to update
  7759.    * @param   locationKey
  7760.    *          The name of the Install Location where the item is installed.
  7761.    * @param   forceReplace
  7762.    *          true if the new location should be used, regardless of its 
  7763.    *          priority relationship to existing entries, false if the location
  7764.    *          should only be updated if its priority is lower than the existing
  7765.    *          value.
  7766.    */
  7767.   updateVisibleList: function(id, locationKey, forceReplace) {
  7768.     if (id in this.visibleItems && this.visibleItems[id]) {
  7769.       var oldLocation = InstallLocations.get(this.visibleItems[id]);
  7770.       var newLocation = InstallLocations.get(locationKey);
  7771.       if (forceReplace || newLocation.priority < oldLocation.priority) 
  7772.         this.visibleItems[id] = locationKey;
  7773.     }
  7774.     else 
  7775.       this.visibleItems[id] = locationKey;
  7776.   },
  7777.  
  7778.   /**
  7779.    * Load the Extensions Datasource from disk.
  7780.    */
  7781.   loadExtensions: function() {
  7782.     Blocklist._ensureBlocklist();
  7783.     var extensionsFile  = getFile(KEY_PROFILEDIR, [FILE_EXTENSIONS]);
  7784.     try {
  7785.       this._inner = gRDF.GetDataSourceBlocking(getURLSpecFromFile(extensionsFile));
  7786.     }
  7787.     catch (e) {
  7788.       LOG("Datasource::loadExtensions: removing corrupted extensions datasource " +
  7789.           " file = " + extensionsFile.path + ", exception = " + e + "\n");
  7790.       extensionsFile.remove(false);
  7791.       return;
  7792.     }
  7793.  
  7794.     var cu = Components.classes["@mozilla.org/rdf/container-utils;1"]
  7795.                        .getService(Components.interfaces.nsIRDFContainerUtils);
  7796.     cu.MakeSeq(this._inner, this._itemRoot);
  7797.  
  7798.     this._buildVisibleItemList();
  7799.   },
  7800.   
  7801.   /**
  7802.    * See nsIExtensionManager.idl
  7803.    */
  7804.   onUpdateStarted: function() {
  7805.     LOG("Datasource: Update Started");
  7806.   },
  7807.   
  7808.   /**
  7809.    * See nsIExtensionManager.idl
  7810.    */
  7811.   onUpdateEnded: function() {
  7812.     LOG("Datasource: Update Ended");
  7813.   },
  7814.   
  7815.   /**
  7816.    * See nsIExtensionManager.idl
  7817.    */
  7818.   onAddonUpdateStarted: function(addon) {
  7819.     LOG("Datasource: Addon Update Started: " + addon.id);
  7820.     this.updateProperty(addon.id, "availableUpdateURL");
  7821.   },
  7822.   
  7823.   /**
  7824.    * See nsIExtensionManager.idl
  7825.    */
  7826.   onAddonUpdateEnded: function(addon, status) {
  7827.     LOG("Datasource: Addon Update Ended: " + addon.id + ", status: " + status);
  7828.     var url = null, hash = null, version = null;
  7829.     var updateAvailable = status == nsIAddonUpdateCheckListener.STATUS_UPDATE;
  7830.     if (updateAvailable) {
  7831.       url = EM_L(addon.xpiURL);
  7832.       if (addon.xpiHash)
  7833.         hash = EM_L(addon.xpiHash);
  7834.       version = EM_L(addon.version);
  7835.     }
  7836.     this.setItemProperty(addon.id, EM_R("availableUpdateURL"), url);
  7837.     this.setItemProperty(addon.id, EM_R("availableUpdateHash"), hash);
  7838.     this.setItemProperty(addon.id, EM_R("availableUpdateVersion"), version);
  7839.     this.updateProperty(addon.id, "availableUpdateURL");
  7840.   },
  7841.  
  7842.   /////////////////////////////////////////////////////////////////////////////
  7843.   // nsIRDFDataSource
  7844.   get URI() {
  7845.     return "rdf:extensions";
  7846.   },
  7847.   
  7848.   GetSource: function(property, target, truthValue) {
  7849.     return this._inner.GetSource(property, target, truthValue);
  7850.   },
  7851.   
  7852.   GetSources: function(property, target, truthValue) {
  7853.     return this._inner.GetSources(property, target, truthValue);
  7854.   },
  7855.   
  7856.   /**
  7857.    * Gets an URL to a theme's image file
  7858.    * @param   item
  7859.    *          The RDF Resource representing the item 
  7860.    * @param   fileName
  7861.    *          The file to locate a URL for
  7862.    * @param   fallbackURL
  7863.    *          If the location fails, supply this URL instead
  7864.    * @returns An RDF Resource to the URL discovered, or the fallback
  7865.    *          if the discovery failed. 
  7866.    */
  7867.   _getThemeImageURL: function(item, fileName, fallbackURL) {
  7868.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  7869.     var installLocation = this._em.getInstallLocation(id);
  7870.     var file = installLocation.getItemFile(id, fileName)
  7871.     if (file.exists())
  7872.       return gRDF.GetResource(getURLSpecFromFile(file));
  7873.  
  7874.     if (id == stripPrefix(RDFURI_DEFAULT_THEME, PREFIX_ITEM_URI)) {
  7875.       var jarFile = getFile(KEY_APPDIR, [DIR_CHROME, FILE_DEFAULT_THEME_JAR]);
  7876.       var url = "jar:" + getURLSpecFromFile(jarFile) + "!/" + fileName;
  7877.       return gRDF.GetResource(url);
  7878.     }
  7879.  
  7880.     return fallbackURL ? gRDF.GetResource(fallbackURL) : null;
  7881.   },
  7882.  
  7883.   /**
  7884.    * Get the em:iconURL property (icon url of the item)
  7885.    */
  7886.   _rdfGet_iconURL: function(item, property) {
  7887.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  7888.     var type = this.getItemProperty(id, "type");
  7889.     if (type & nsIUpdateItem.TYPE_THEME)
  7890.       return this._getThemeImageURL(item, "icon.png", URI_GENERIC_ICON_THEME);
  7891.  
  7892.     if (inSafeMode())
  7893.       return gRDF.GetResource(URI_GENERIC_ICON_XPINSTALL);
  7894.  
  7895.     var hasIconURL = this._inner.hasArcOut(item, property);
  7896.     // If the addon doesn't have an IconURL property or it is disabled use the
  7897.     // generic icon URL instead.
  7898.     if (!hasIconURL || this.getItemProperty(id, "isDisabled") == "true")
  7899.       return gRDF.GetResource(URI_GENERIC_ICON_XPINSTALL);
  7900.     var iconURL = stringData(this._inner.GetTarget(item, property, true));
  7901.     try {
  7902.       var uri = newURI(iconURL);
  7903.       var scheme = uri.scheme;
  7904.       // Only allow chrome URIs or when installing http(s) URIs.
  7905.       if (scheme == "chrome" || (scheme == "http" || scheme == "https") &&
  7906.           this._inner.hasArcOut(item, EM_R("downloadURL")))
  7907.         return null;
  7908.     }
  7909.     catch (e) {
  7910.     }
  7911.     // Use a generic icon URL for addons that have an invalid iconURL.
  7912.     return gRDF.GetResource(URI_GENERIC_ICON_XPINSTALL);
  7913.   },
  7914.   
  7915.   /**
  7916.    * Get the em:previewImage property (preview image of the item)
  7917.    */
  7918.   _rdfGet_previewImage: function(item, property) {
  7919.     var type = this.getItemProperty(stripPrefix(item.Value, PREFIX_ITEM_URI), "type");
  7920.     if (type != -1 && type & nsIUpdateItem.TYPE_THEME)
  7921.       return this._getThemeImageURL(item, "preview.png", null);
  7922.     return null;
  7923.   },
  7924.   
  7925.   /**
  7926.    * If we're in safe mode, the item is disabled by the user or app, or the
  7927.    * item is to be upgraded force the generic about dialog for the item.
  7928.    */
  7929.   _rdfGet_aboutURL: function(item, property) {
  7930.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  7931.     if (inSafeMode() || this.getItemProperty(id, "isDisabled") == "true" ||
  7932.         this.getItemProperty(id, "opType") == OP_NEEDS_UPGRADE)
  7933.       return EM_L("");
  7934.  
  7935.     return null;
  7936.   },
  7937.  
  7938.   _rdfGet_installDate: function(item, property) {
  7939.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  7940.     var key = this.getItemProperty(id, "installLocation");
  7941.     if (key && key in StartupCache.entries && id in StartupCache.entries[key] &&
  7942.         StartupCache.entries[key][id] && StartupCache.entries[key][id].mtime)
  7943.       return EM_D(StartupCache.entries[key][id].mtime * 1000000);
  7944.     return null;
  7945.   },
  7946.  
  7947.   /**
  7948.    * Get the em:compatible property (whether or not this item is compatible)
  7949.    */
  7950.   _rdfGet_compatible: function(item, property) {
  7951.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  7952.     var targetAppInfo = this.getTargetApplicationInfo(id, this);
  7953.     if (!targetAppInfo) {
  7954.       // When installing a new addon targetAppInfo does not exist yet
  7955.       if (this.getItemProperty(id, "opType") == OP_NEEDS_INSTALL)
  7956.         return EM_L("true");
  7957.       return EM_L("false");
  7958.     }
  7959.     
  7960.     getVersionChecker();
  7961.     var appVersion = gApp.version;
  7962.     if (gVersionChecker.compare(targetAppInfo.maxVersion, appVersion) < 0 || 
  7963.         gVersionChecker.compare(appVersion, targetAppInfo.minVersion) < 0) {
  7964.       // OK, this item is incompatible. 
  7965.       return EM_L("false");
  7966.     }
  7967.     return EM_L("true");
  7968.   }, 
  7969.  
  7970.   /**
  7971.    * Get the em:blocklisted property (whether or not this item is blocklisted)
  7972.    */
  7973.   _rdfGet_blocklisted: function(item, property) {
  7974.     Blocklist._ensureBlocklist();
  7975.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  7976.     var blItem = Blocklist.entries[id];
  7977.     if (!blItem)
  7978.       return EM_L("false");
  7979.  
  7980.     getVersionChecker();
  7981.     var version = this.getItemProperty(id, "version");
  7982.     var appVersion = gApp.version;
  7983.     for (var i = 0; i < blItem.length; ++i) {
  7984.       if (gVersionChecker.compare(version, blItem[i].minVersion) < 0  ||
  7985.           gVersionChecker.compare(version, blItem[i].maxVersion) > 0)
  7986.         continue;
  7987.  
  7988.       var blTargetApp = blItem[i].targetApps[gApp.ID];
  7989.       if (blTargetApp) {
  7990.         for (var x = 0; x < blTargetApp.length; ++x) {
  7991.           if (gVersionChecker.compare(appVersion, blTargetApp[x].minVersion) < 0  ||
  7992.               gVersionChecker.compare(appVersion, blTargetApp[x].maxVersion) > 0)
  7993.             continue;
  7994.           return EM_L("true");
  7995.         }
  7996.       }
  7997.  
  7998.       blTargetApp = blItem[i].targetApps[TOOLKIT_ID];
  7999.       if (!blTargetApp)
  8000.         return EM_L("false");
  8001.       for (x = 0; x < blTargetApp.length; ++x) {
  8002.         if (gVersionChecker.compare(gApp.platformVersion, blTargetApp[x].minVersion) < 0  ||
  8003.             gVersionChecker.compare(gApp.platformVersion, blTargetApp[x].maxVersion) > 0)
  8004.           continue;
  8005.         return EM_L("true");
  8006.       }
  8007.     }
  8008.     return EM_L("false");
  8009.   }, 
  8010.   
  8011.   /**
  8012.    * Get the em:state property (represents the current phase of an install).
  8013.    */
  8014.   _rdfGet_state: function(item, property) {
  8015.     var id = item.Value;
  8016.     if (id in this._progressData)
  8017.       return EM_L(this._progressData[id].state);
  8018.     return null;
  8019.   },
  8020.  
  8021.   /**
  8022.    * Get the em:progress property from the _progressData js object. By storing
  8023.    * progress which is updated repeastedly during a download we avoid
  8024.    * repeastedly writing it to the rdf file.
  8025.    */
  8026.   _rdfGet_progress: function(item, property) {
  8027.     var id = item.Value;
  8028.     if (id in this._progressData)
  8029.       return EM_I(this._progressData[id].progress);
  8030.     return null;
  8031.   },
  8032.  
  8033.   /**
  8034.    * Get the em:appManaged property. This prevents extensions from hiding
  8035.    * extensions installed into locations other than the app-global location.
  8036.    */
  8037.   _rdfGet_appManaged: function(item, property) {
  8038.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  8039.     var locationKey = this.getItemProperty(id, "installLocation");
  8040.     if (locationKey != KEY_APP_GLOBAL)
  8041.       return EM_L("false");
  8042.     return null;
  8043.   },
  8044.  
  8045.   /**
  8046.    * Get the em:hidden property. This prevents extensions from hiding
  8047.    * extensions installed into locations other than restricted locations.
  8048.    */
  8049.   _rdfGet_hidden: function(item, property) {
  8050.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  8051.     var installLocation = InstallLocations.get(this.getInstallLocationKey(id));
  8052.     if (!installLocation || !installLocation.restricted)
  8053.       return EM_L("false");
  8054.     return null;
  8055.   },
  8056.  
  8057.   /**
  8058.    * Get the em:locked property. This prevents extensions from locking
  8059.    * extensions installed into locations other than restricted locations.
  8060.    */
  8061.   _rdfGet_locked: function(item, property) {
  8062.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  8063.     var installLocation = InstallLocations.get(this.getInstallLocationKey(id));
  8064.     if (!installLocation || !installLocation.restricted)
  8065.       return EM_L("false");
  8066.     return null;
  8067.   },
  8068.  
  8069.   /**
  8070.    * Get the em:satisfiesDependencies property - literal string "false" for
  8071.    * dependencies not satisfied (e.g. dependency disabled, incorrect version,
  8072.    * not installed etc.), and literal string "true" for dependencies satisfied.
  8073.    */
  8074.   _rdfGet_satisfiesDependencies: function(item, property) {
  8075.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  8076.     if (this.satisfiesDependencies(id))
  8077.       return EM_L("true");
  8078.     return EM_L("false");
  8079.   },
  8080.   
  8081.   /**
  8082.    * Get the em:opType property (controls widget state for the EM UI)
  8083.    * from the Startup Cache (e.g. extensions.cache)
  8084.    */
  8085.   _rdfGet_opType: function(item, property) {
  8086.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  8087.     var key = this.getItemProperty(id, "installLocation");
  8088.     if (key in StartupCache.entries && id in StartupCache.entries[key] &&
  8089.         StartupCache.entries[key][id] && StartupCache.entries[key][id].op != OP_NONE)
  8090.       return EM_L(StartupCache.entries[key][id].op);
  8091.     return null;
  8092.   },
  8093.  
  8094.   /**
  8095.    * Finds the localized resource for an add-on.
  8096.    */
  8097.   _getLocalizedResource: function(item)
  8098.   {
  8099.     var localizedProp = EM_R("localized");
  8100.     var localeProp = EM_R("locale");
  8101.     var localizations = this._inner.GetTargets(item, localizedProp, true);
  8102.     while (localizations.hasMoreElements()) {
  8103.       var localized = localizations.getNext().QueryInterface(Components.interfaces.nsIRDFNode);
  8104.       var list = this._inner.GetTargets(localized, localeProp, true);
  8105.       while (list.hasMoreElements()) {
  8106.         var locale = list.getNext().QueryInterface(Components.interfaces.nsIRDFNode);
  8107.         if (stringData(locale) == gLocale)
  8108.           return localized;
  8109.       }
  8110.     }
  8111.     return null;
  8112.   },
  8113.   
  8114.   /**
  8115.    * Gets a localizable property. Install Manifests are generally only in one 
  8116.    * language, however an item can customize by providing localized prefs in 
  8117.    * the form:
  8118.    *
  8119.    *    extensions.{GUID}.[name|description|creator|homepageURL]
  8120.    *
  8121.    * to specify localized text for each of these properties.
  8122.    */
  8123.   _getLocalizablePropertyValue: function(item, property) {
  8124.     // These are localizable properties that a language pack supplied by the 
  8125.     // Extension may override.          
  8126.     var prefName = PREF_EM_EXTENSION_FORMAT.replace(/%UUID%/, 
  8127.                     stripPrefix(item.Value, PREFIX_ITEM_URI)) + 
  8128.                     stripPrefix(property.Value, PREFIX_NS_EM);
  8129.     try {
  8130.       var value = gPref.getComplexValue(prefName, 
  8131.                                         Components.interfaces.nsIPrefLocalizedString);
  8132.       if (value.data) 
  8133.         return EM_L(value.data);
  8134.     }
  8135.     catch (e) {
  8136.     }
  8137.  
  8138.     var localized = this._getLocalizedResource(item);
  8139.     if (localized) {
  8140.       var value = this._inner.GetTarget(localized, property, true);
  8141.       return value ? value : EM_L("");
  8142.     }
  8143.     return null;
  8144.   },
  8145.   
  8146.   /**
  8147.    * Get the em:name property (name of the item)
  8148.    */
  8149.   _rdfGet_name: function(item, property) {
  8150.     return this._getLocalizablePropertyValue(item, property);
  8151.   },
  8152.   
  8153.   /**
  8154.    * Get the em:description property (description of the item)
  8155.    */
  8156.   _rdfGet_description: function(item, property) {
  8157.     return this._getLocalizablePropertyValue(item, property);
  8158.   },
  8159.   
  8160.   /**
  8161.    * Get the em:creator property (creator of the item)
  8162.    */
  8163.   _rdfGet_creator: function(item, property) { 
  8164.     return this._getLocalizablePropertyValue(item, property);
  8165.   },
  8166.   
  8167.   /**
  8168.    * Get the em:homepageURL property (homepage URL of the item)
  8169.    */
  8170.   _rdfGet_homepageURL: function(item, property) {
  8171.     return this._getLocalizablePropertyValue(item, property);
  8172.   },
  8173.  
  8174.   /**
  8175.    * Get the em:isDisabled property. This will be true if the item has a
  8176.    * appDisabled or a userDisabled property that is true or OP_NEEDS_ENABLE.
  8177.    */
  8178.   _rdfGet_isDisabled: function(item, property) {
  8179.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  8180.     if (this.getItemProperty(id, "userDisabled") == "true" ||
  8181.         this.getItemProperty(id, "appDisabled") == "true" ||
  8182.         this.getItemProperty(id, "userDisabled") == OP_NEEDS_ENABLE ||
  8183.         this.getItemProperty(id, "appDisabled") == OP_NEEDS_ENABLE)
  8184.       return EM_L("true");
  8185.     return EM_L("false");
  8186.   },
  8187.  
  8188.   _rdfGet_addonID: function(item, property) {
  8189.     var id = this._inner.GetTarget(item, EM_R("downloadURL"), true) ? item.Value :
  8190.                                                                       stripPrefix(item.Value, PREFIX_ITEM_URI);
  8191.     return EM_L(id);
  8192.   },
  8193.  
  8194.   /**
  8195.    * Get the em:updateable property - this specifies whether the item is
  8196.    * allowed to be updated
  8197.    */
  8198.   _rdfGet_updateable: function(item, property) {
  8199.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  8200.     var opType = this.getItemProperty(id, "opType");
  8201.     if (opType != OP_NONE || this.getItemProperty(id, "appManaged") == "true")
  8202.       return EM_L("false");
  8203.  
  8204.     if (getPref("getBoolPref", (PREF_EM_ITEM_UPDATE_ENABLED.replace(/%UUID%/, id), false)) == true)
  8205.       return EM_L("false");
  8206.  
  8207.     var installLocation = InstallLocations.get(this.getInstallLocationKey(id));
  8208.     if (!installLocation || !installLocation.canAccess)
  8209.       return EM_L("false");
  8210.  
  8211.     return EM_L("true");
  8212.   },
  8213.  
  8214.   /**
  8215.    * See nsIRDFDataSource.idl
  8216.    */
  8217.   GetTarget: function(source, property, truthValue) {
  8218.     if (!source)
  8219.       return null;
  8220.       
  8221.     var target = null;
  8222.     var getter = "_rdfGet_" + stripPrefix(property.Value, PREFIX_NS_EM);
  8223.     if (getter in this)
  8224.       target = this[getter](source, property);
  8225.  
  8226.     return target || this._inner.GetTarget(source, property, truthValue);
  8227.   },
  8228.   
  8229.   /**
  8230.    * Gets an enumeration of values of a localizable property. Install Manifests
  8231.    * are generally only in one language, however an item can customize by 
  8232.    * providing localized prefs in the form:
  8233.    *
  8234.    *    extensions.{GUID}.[contributor].1
  8235.    *    extensions.{GUID}.[contributor].2
  8236.    *    extensions.{GUID}.[contributor].3
  8237.    *    ...
  8238.    *
  8239.    * to specify localized text for each of these properties.
  8240.    */
  8241.   _getLocalizablePropertyValues: function(item, property) {
  8242.     // These are localizable properties that a language pack supplied by the 
  8243.     // Extension may override.          
  8244.     var values = [];
  8245.     var prefName = PREF_EM_EXTENSION_FORMAT.replace(/%UUID%/, 
  8246.                     stripPrefix(item.Value, PREFIX_ITEM_URI)) + 
  8247.                     stripPrefix(property.Value, PREFIX_NS_EM);
  8248.     var i = 0;
  8249.     while (true) {
  8250.       try {
  8251.         var value = gPref.getComplexValue(prefName + "." + ++i, 
  8252.                                           Components.interfaces.nsIPrefLocalizedString);
  8253.         if (value.data) 
  8254.           values.push(EM_L(value.data));
  8255.       }
  8256.       catch (e) {
  8257.         try {
  8258.           var value = gPref.getComplexValue(prefName, 
  8259.                                             Components.interfaces.nsIPrefLocalizedString);
  8260.           if (value.data) 
  8261.             values.push(EM_L(value.data));
  8262.         }
  8263.         catch (e) {
  8264.         }
  8265.         break;
  8266.       }
  8267.     }
  8268.     if (values.length > 0)
  8269.       return values;
  8270.  
  8271.     var localized = this._getLocalizedResource(item);
  8272.     if (localized) {
  8273.       var targets = this._inner.GetTargets(localized, property, true);
  8274.       while (targets.hasMoreElements())
  8275.         values.push(targets.getNext());
  8276.       return values;
  8277.     }
  8278.     return null;
  8279.   },
  8280.  
  8281.   /**
  8282.    * Get the em:developer property (developers of the extension)
  8283.    */
  8284.   _rdfGets_developer: function(item, property) {
  8285.     return this._getLocalizablePropertyValues(item, property); 
  8286.   },
  8287.  
  8288.   /**
  8289.    * Get the em:translator property (translators of the extension)
  8290.    */
  8291.   _rdfGets_translator: function(item, property) {
  8292.     return this._getLocalizablePropertyValues(item, property); 
  8293.   },
  8294.   
  8295.   /**
  8296.    * Get the em:contributor property (contributors to the extension)
  8297.    */
  8298.   _rdfGets_contributor: function(item, property) {
  8299.     return this._getLocalizablePropertyValues(item, property); 
  8300.   },
  8301.   
  8302.   /**
  8303.    * See nsIRDFDataSource.idl
  8304.    */
  8305.   GetTargets: function(source, property, truthValue) {
  8306.     if (!source)
  8307.       return null;
  8308.       
  8309.     var ary = null;
  8310.     var propertyName = stripPrefix(property.Value, PREFIX_NS_EM);
  8311.     var getter = "_rdfGets_" + propertyName;
  8312.     if (getter in this)
  8313.       ary = this[getter](source, property);
  8314.     else {
  8315.       // The template builder calls GetTargets when single value properties
  8316.       // are used in a triple.
  8317.       getter = "_rdfGet_" + propertyName;
  8318.       if (getter in this)
  8319.         ary = [ this[getter](source, property) ];
  8320.     }
  8321.     
  8322.     return ary ? new ArrayEnumerator(ary) 
  8323.                : this._inner.GetTargets(source, property, truthValue);
  8324.   },
  8325.   
  8326.   Assert: function(source, property, target, truthValue) {
  8327.     this._inner.Assert(source, property, target, truthValue);
  8328.   },
  8329.   
  8330.   Unassert: function(source, property, target) {
  8331.     this._inner.Unassert(source, property, target);
  8332.   },
  8333.   
  8334.   Change: function(source, property, oldTarget, newTarget) {
  8335.     this._inner.Change(source, property, oldTarget, newTarget);
  8336.   },
  8337.  
  8338.   Move: function(oldSource, newSource, property, target) {
  8339.     this._inner.Move(oldSource, newSource, property, target);
  8340.   },
  8341.   
  8342.   HasAssertion: function(source, property, target, truthValue) {
  8343.     if (!source || !property || !target)
  8344.       return false;
  8345.  
  8346.     var getter = "_rdfGet_" + stripPrefix(property.Value, PREFIX_NS_EM);
  8347.     if (getter in this)
  8348.       return this[getter](source, property) == target;
  8349.     return this._inner.HasAssertion(source, property, target, truthValue);
  8350.   },
  8351.   
  8352.   _observers: [],
  8353.   AddObserver: function(observer) {
  8354.     for (var i = 0; i < this._observers.length; ++i) {
  8355.       if (this._observers[i] == observer) 
  8356.         return;
  8357.     }
  8358.     this._observers.push(observer);
  8359.     this._inner.AddObserver(observer);
  8360.   },
  8361.   
  8362.   RemoveObserver: function(observer) {
  8363.     for (var i = 0; i < this._observers.length; ++i) {
  8364.       if (this._observers[i] == observer) 
  8365.         this._observers.splice(i, 1);
  8366.     }
  8367.     this._inner.RemoveObserver(observer);
  8368.   },
  8369.   
  8370.   ArcLabelsIn: function(node) {
  8371.     return this._inner.ArcLabelsIn(node);
  8372.   },
  8373.   
  8374.   ArcLabelsOut: function(source) {
  8375.     return this._inner.ArcLabelsOut(source);
  8376.   },
  8377.   
  8378.   GetAllResources: function() {
  8379.     return this._inner.GetAllResources();
  8380.   },
  8381.   
  8382.   IsCommandEnabled: function(sources, command, arguments) {
  8383.     return this._inner.IsCommandEnabled(sources, command, arguments);
  8384.   },
  8385.   
  8386.   DoCommand: function(sources, command, arguments) {
  8387.     this._inner.DoCommand(sources, command, arguments);
  8388.   },
  8389.   
  8390.   GetAllCmds: function(source) {
  8391.     return this._inner.GetAllCmds(source);
  8392.   },
  8393.   
  8394.   hasArcIn: function(node, arc) {
  8395.     return this._inner.hasArcIn(node, arc);
  8396.   },
  8397.   
  8398.   hasArcOut: function(source, arc) {
  8399.     return this._inner.hasArcOut(source, arc);
  8400.   },
  8401.   
  8402.   beginUpdateBatch: function() {
  8403.     return this._inner.beginUpdateBatch();
  8404.   },
  8405.   
  8406.   endUpdateBatch: function() {
  8407.     return this._inner.endUpdateBatch();
  8408.   },
  8409.   
  8410.   /**
  8411.    * See nsIRDFRemoteDataSource.idl
  8412.    */
  8413.   get loaded() {
  8414.     throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  8415.   },
  8416.   
  8417.   Init: function(uri) {
  8418.   },
  8419.   
  8420.   Refresh: function(blocking) {
  8421.   },
  8422.   
  8423.   Flush: function() {
  8424.     if (this._inner instanceof Components.interfaces.nsIRDFRemoteDataSource)
  8425.       this._inner.Flush();
  8426.   },
  8427.   
  8428.   FlushTo: function(uri) {
  8429.   },
  8430.   
  8431.   /**
  8432.    * See nsISupports.idl
  8433.    */
  8434.   QueryInterface: function(iid) {
  8435.     if (!iid.equals(Components.interfaces.nsIRDFDataSource) &&
  8436.         !iid.equals(Components.interfaces.nsIRDFRemoteDataSource) && 
  8437.         !iid.equals(Components.interfaces.nsISupports))
  8438.       throw Components.results.NS_ERROR_NO_INTERFACE;
  8439.     return this;
  8440.   }
  8441. };
  8442.  
  8443. function UpdateItem () {
  8444. }
  8445. UpdateItem.prototype = {
  8446.   /**
  8447.    * See nsIUpdateService.idl
  8448.    */
  8449.   init: function(id, version, installLocationKey, minAppVersion, maxAppVersion,
  8450.                  name, downloadURL, xpiHash, iconURL, updateURL, type) {
  8451.     this._id                  = id;
  8452.     this._version             = version;
  8453.     this._installLocationKey  = installLocationKey;
  8454.     this._minAppVersion       = minAppVersion;
  8455.     this._maxAppVersion       = maxAppVersion;
  8456.     this._name                = name;
  8457.     this._downloadURL         = downloadURL;
  8458.     this._xpiHash             = xpiHash;
  8459.     this._iconURL             = iconURL;
  8460.     this._updateURL           = updateURL;
  8461.     this._type                = type;
  8462.   },
  8463.   
  8464.   /**
  8465.    * See nsIUpdateService.idl
  8466.    */
  8467.   get id()                { return this._id;                },
  8468.   get version()           { return this._version;           },
  8469.   get installLocationKey(){ return this._installLocationKey;},
  8470.   get minAppVersion()     { return this._minAppVersion;     },
  8471.   get maxAppVersion()     { return this._maxAppVersion;     },
  8472.   get name()              { return this._name;              },
  8473.   get xpiURL()            { return this._downloadURL;       },
  8474.   get xpiHash()           { return this._xpiHash;           },
  8475.   get iconURL()           { return this._iconURL            },
  8476.   get updateRDF()         { return this._updateURL;         },
  8477.   get type()              { return this._type;              },
  8478.  
  8479.   /**
  8480.    * See nsIUpdateService.idl
  8481.    */
  8482.   get objectSource() {
  8483.     return { id                 : this._id, 
  8484.              version            : this._version, 
  8485.              installLocationKey : this._installLocationKey,
  8486.              minAppVersion      : this._minAppVersion,
  8487.              maxAppVersion      : this._maxAppVersion,
  8488.              name               : this._name, 
  8489.              xpiURL             : this._downloadURL, 
  8490.              xpiHash            : this._xpiHash,
  8491.              iconURL            : this._iconURL, 
  8492.              updateRDF          : this._updateURL,
  8493.              type               : this._type 
  8494.            }.toSource();
  8495.   },
  8496.   
  8497.   /**
  8498.    * See nsISupports.idl
  8499.    */
  8500.   QueryInterface: function(iid) {
  8501.     if (!iid.equals(Components.interfaces.nsIUpdateItem) &&
  8502.         !iid.equals(Components.interfaces.nsISupports))
  8503.       throw Components.results.NS_ERROR_NO_INTERFACE;
  8504.     return this;
  8505.   }
  8506. };
  8507.  
  8508. var ExtensionManagerDataSourceFactory = {
  8509.   createInstance: function() {
  8510.     return Components.classes[ExtensionManager.prototype.contractID]
  8511.                      .getService(Components.interfaces.nsIExtensionManager)
  8512.                      .datasource;
  8513.   }
  8514. }
  8515.  
  8516. var gModule = {
  8517.   registerSelf: function(componentManager, fileSpec, location, type) {
  8518.     componentManager = componentManager.QueryInterface(Components.interfaces.nsIComponentRegistrar);
  8519.     
  8520.     for (var key in this._objects) {
  8521.       var obj = this._objects[key];
  8522.       componentManager.registerFactoryLocation(obj.CID, obj.className, obj.contractID,
  8523.                                                fileSpec, location, type);
  8524.     }
  8525.  
  8526.     // Make the Extension Manager a startup observer
  8527.     var categoryManager = Components.classes["@mozilla.org/categorymanager;1"]
  8528.                                     .getService(Components.interfaces.nsICategoryManager);
  8529.     categoryManager.addCategoryEntry("app-startup", this._objects.manager.className,
  8530.                                      "service," + this._objects.manager.contractID, 
  8531.                                      true, true);
  8532.   },
  8533.   
  8534.   getClassObject: function(componentManager, cid, iid) {
  8535.     if (!iid.equals(Components.interfaces.nsIFactory))
  8536.       throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  8537.  
  8538.     for (var key in this._objects) {
  8539.       if (cid.equals(this._objects[key].CID))
  8540.         return this._objects[key].factory;
  8541.     }
  8542.     
  8543.     throw Components.results.NS_ERROR_NO_INTERFACE;
  8544.   },
  8545.   
  8546.   _makeFactory: #1= function(ctor) {
  8547.     return { 
  8548.              createInstance: function (outer, iid) {
  8549.                if (outer != null)
  8550.                  throw Components.results.NS_ERROR_NO_AGGREGATION;
  8551.                return (new ctor()).QueryInterface(iid);
  8552.              } 
  8553.            };  
  8554.   },
  8555.   
  8556.   _objects: {
  8557.     manager: { CID        : ExtensionManager.prototype.classID,
  8558.                contractID : ExtensionManager.prototype.contractID,
  8559.                className  : ExtensionManager.prototype.classDescription,
  8560.                factory    : #1#(ExtensionManager)
  8561.              },
  8562.     item:    { CID        : Components.ID("{F3294B1C-89F4-46F8-98A0-44E1EAE92518}"),
  8563.                contractID : "@mozilla.org/updates/item;1",
  8564.                className  : "Update Item",
  8565.                factory    : #1#(UpdateItem)
  8566.              },
  8567.     datasource: { CID        : Components.ID("{69BB8313-2D4F-45EC-97E0-D39DA58ECCE9}"),
  8568.                   contractID : "@mozilla.org/rdf/datasource;1?name=extensions",
  8569.                   className  : "Extension Manager Data Source",
  8570.                   factory    : ExtensionManagerDataSourceFactory
  8571.              }
  8572.    },
  8573.  
  8574.   canUnload: function(componentManager) {
  8575.     return true;
  8576.   }
  8577. };
  8578.  
  8579. function NSGetModule(compMgr, fileSpec) {
  8580.   return gModule;
  8581. }
  8582.  
  8583.